Skip to content

Commit 2fb0b51

Browse files
feat(apigee): update the api
#### apigee:v1 The following keys were added: - resources.organizations.resources.dnsZones.methods.create (Total Keys: 14) - resources.organizations.resources.dnsZones.methods.delete (Total Keys: 11) - resources.organizations.resources.dnsZones.methods.get (Total Keys: 11) - resources.organizations.resources.dnsZones.methods.list (Total Keys: 16) - resources.organizations.resources.securityMonitoringConditions.methods.create (Total Keys: 14) - resources.organizations.resources.securityMonitoringConditions.methods.delete (Total Keys: 11) - resources.organizations.resources.securityMonitoringConditions.methods.get (Total Keys: 11) - resources.organizations.resources.securityMonitoringConditions.methods.list (Total Keys: 18) - resources.organizations.resources.securityMonitoringConditions.methods.patch (Total Keys: 15) - schemas.GoogleCloudApigeeV1DnsZone (Total Keys: 17) - schemas.GoogleCloudApigeeV1ListDnsZonesResponse (Total Keys: 5) - schemas.GoogleCloudApigeeV1ListSecurityMonitoringConditionsResponse (Total Keys: 5) - schemas.GoogleCloudApigeeV1SecurityMonitoringCondition (Total Keys: 19)
1 parent 0716538 commit 2fb0b51

File tree

4 files changed

+1049
-1
lines changed

4 files changed

+1049
-1
lines changed
Lines changed: 265 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,265 @@
1+
<html><body>
2+
<style>
3+
4+
body, h1, h2, h3, div, span, p, pre, a {
5+
margin: 0;
6+
padding: 0;
7+
border: 0;
8+
font-weight: inherit;
9+
font-style: inherit;
10+
font-size: 100%;
11+
font-family: inherit;
12+
vertical-align: baseline;
13+
}
14+
15+
body {
16+
font-size: 13px;
17+
padding: 1em;
18+
}
19+
20+
h1 {
21+
font-size: 26px;
22+
margin-bottom: 1em;
23+
}
24+
25+
h2 {
26+
font-size: 24px;
27+
margin-bottom: 1em;
28+
}
29+
30+
h3 {
31+
font-size: 20px;
32+
margin-bottom: 1em;
33+
margin-top: 1em;
34+
}
35+
36+
pre, code {
37+
line-height: 1.5;
38+
font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39+
}
40+
41+
pre {
42+
margin-top: 0.5em;
43+
}
44+
45+
h1, h2, h3, p {
46+
font-family: Arial, sans serif;
47+
}
48+
49+
h1, h2, h3 {
50+
border-bottom: solid #CCC 1px;
51+
}
52+
53+
.toc_element {
54+
margin-top: 0.5em;
55+
}
56+
57+
.firstline {
58+
margin-left: 2 em;
59+
}
60+
61+
.method {
62+
margin-top: 1em;
63+
border: solid 1px #CCC;
64+
padding: 1em;
65+
background: #EEE;
66+
}
67+
68+
.details {
69+
font-weight: bold;
70+
font-size: 14px;
71+
}
72+
73+
</style>
74+
75+
<h1><a href="apigee_v1.html">Apigee API</a> . <a href="apigee_v1.organizations.html">organizations</a> . <a href="apigee_v1.organizations.dnsZones.html">dnsZones</a></h1>
76+
<h2>Instance Methods</h2>
77+
<p class="toc_element">
78+
<code><a href="#close">close()</a></code></p>
79+
<p class="firstline">Close httplib2 connections.</p>
80+
<p class="toc_element">
81+
<code><a href="#create">create(parent, body=None, dnsZoneId=None, x__xgafv=None)</a></code></p>
82+
<p class="firstline">Creates a new DNS zone.</p>
83+
<p class="toc_element">
84+
<code><a href="#delete">delete(name, x__xgafv=None)</a></code></p>
85+
<p class="firstline">Deletes a previously created DNS zone.</p>
86+
<p class="toc_element">
87+
<code><a href="#get">get(name, x__xgafv=None)</a></code></p>
88+
<p class="firstline">Fetches the representation of an existing DNS zone.</p>
89+
<p class="toc_element">
90+
<code><a href="#list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
91+
<p class="firstline">Enumerates DNS zones that have been created but not yet deleted.</p>
92+
<p class="toc_element">
93+
<code><a href="#list_next">list_next()</a></code></p>
94+
<p class="firstline">Retrieves the next page of results.</p>
95+
<h3>Method Details</h3>
96+
<div class="method">
97+
<code class="details" id="close">close()</code>
98+
<pre>Close httplib2 connections.</pre>
99+
</div>
100+
101+
<div class="method">
102+
<code class="details" id="create">create(parent, body=None, dnsZoneId=None, x__xgafv=None)</code>
103+
<pre>Creates a new DNS zone.
104+
105+
Args:
106+
parent: string, Required. Organization where the DNS zone will be created. (required)
107+
body: object, The request body.
108+
The object takes the form of:
109+
110+
{ # A DNS zone is a resource under an Apigee organization that is used to create a DNS peering with Apigee&#x27;s network. DNS peering will let Apigee instances resolve the hostnames created in a peered network.
111+
&quot;createTime&quot;: &quot;A String&quot;, # Output only. The time that this resource was created on the server.
112+
&quot;description&quot;: &quot;A String&quot;, # Required. Description of the resource. String of at most 1024 characters associated with this resource for the user&#x27;s convenience.
113+
&quot;domain&quot;: &quot;A String&quot;, # Required. The domain name for hosts in this private zone, for instance &quot;example.com.&quot;.
114+
&quot;name&quot;: &quot;A String&quot;, # Identifier. Unique name for the resource. Defined by the server Format: &quot;organizations/{organization}/dnsZones/{dns_zone}&quot;.
115+
&quot;peeringConfig&quot;: { # Fields for DNS PEERING zone. # DNS PEERING zone configuration.
116+
&quot;targetNetworkId&quot;: &quot;A String&quot;, # Required. The VPC network where the records for that private DNS zone&#x27;s namespace are available. Apigee will be performing DNS peering with this VPC network.
117+
&quot;targetProjectId&quot;: &quot;A String&quot;, # Required. The ID of the project that contains the producer VPC network.
118+
},
119+
&quot;state&quot;: &quot;A String&quot;, # Output only. State of the DNS Peering. Values other than `ACTIVE` mean the resource is not ready to use.
120+
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time that this resource was updated on the server.
121+
}
122+
123+
dnsZoneId: string, Required. User assigned ID for this resource. Must be unique within the organization. The name must be 1-63 characters long, must begin with a letter, end with a letter or digit, and only contain lowercase letters, digits or dashes.
124+
x__xgafv: string, V1 error format.
125+
Allowed values
126+
1 - v1 error format
127+
2 - v2 error format
128+
129+
Returns:
130+
An object of the form:
131+
132+
{ # This resource represents a long-running operation that is the result of a network API call.
133+
&quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
134+
&quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
135+
&quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
136+
&quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
137+
{
138+
&quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
139+
},
140+
],
141+
&quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
142+
},
143+
&quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
144+
&quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
145+
},
146+
&quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
147+
&quot;response&quot;: { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
148+
&quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
149+
},
150+
}</pre>
151+
</div>
152+
153+
<div class="method">
154+
<code class="details" id="delete">delete(name, x__xgafv=None)</code>
155+
<pre>Deletes a previously created DNS zone.
156+
157+
Args:
158+
name: string, Required. Name of the DNS zone to delete. Use the following structure in your request: `organizations/{org}/dnsZones/{dns_zone}`. (required)
159+
x__xgafv: string, V1 error format.
160+
Allowed values
161+
1 - v1 error format
162+
2 - v2 error format
163+
164+
Returns:
165+
An object of the form:
166+
167+
{ # This resource represents a long-running operation that is the result of a network API call.
168+
&quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
169+
&quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
170+
&quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
171+
&quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
172+
{
173+
&quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
174+
},
175+
],
176+
&quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
177+
},
178+
&quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
179+
&quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
180+
},
181+
&quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
182+
&quot;response&quot;: { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
183+
&quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
184+
},
185+
}</pre>
186+
</div>
187+
188+
<div class="method">
189+
<code class="details" id="get">get(name, x__xgafv=None)</code>
190+
<pre>Fetches the representation of an existing DNS zone.
191+
192+
Args:
193+
name: string, Required. Name of the DNS zone to fetch. Use the following structure in your request: `organizations/{org}/dnsZones/{dns_zone}`. (required)
194+
x__xgafv: string, V1 error format.
195+
Allowed values
196+
1 - v1 error format
197+
2 - v2 error format
198+
199+
Returns:
200+
An object of the form:
201+
202+
{ # A DNS zone is a resource under an Apigee organization that is used to create a DNS peering with Apigee&#x27;s network. DNS peering will let Apigee instances resolve the hostnames created in a peered network.
203+
&quot;createTime&quot;: &quot;A String&quot;, # Output only. The time that this resource was created on the server.
204+
&quot;description&quot;: &quot;A String&quot;, # Required. Description of the resource. String of at most 1024 characters associated with this resource for the user&#x27;s convenience.
205+
&quot;domain&quot;: &quot;A String&quot;, # Required. The domain name for hosts in this private zone, for instance &quot;example.com.&quot;.
206+
&quot;name&quot;: &quot;A String&quot;, # Identifier. Unique name for the resource. Defined by the server Format: &quot;organizations/{organization}/dnsZones/{dns_zone}&quot;.
207+
&quot;peeringConfig&quot;: { # Fields for DNS PEERING zone. # DNS PEERING zone configuration.
208+
&quot;targetNetworkId&quot;: &quot;A String&quot;, # Required. The VPC network where the records for that private DNS zone&#x27;s namespace are available. Apigee will be performing DNS peering with this VPC network.
209+
&quot;targetProjectId&quot;: &quot;A String&quot;, # Required. The ID of the project that contains the producer VPC network.
210+
},
211+
&quot;state&quot;: &quot;A String&quot;, # Output only. State of the DNS Peering. Values other than `ACTIVE` mean the resource is not ready to use.
212+
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time that this resource was updated on the server.
213+
}</pre>
214+
</div>
215+
216+
<div class="method">
217+
<code class="details" id="list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</code>
218+
<pre>Enumerates DNS zones that have been created but not yet deleted.
219+
220+
Args:
221+
parent: string, Required. Name of the organization for which to list the DNS zones. Use the following structure in your request: `organizations/{org}` (required)
222+
pageSize: integer, Optional. Maximum number of DNS zones to return. If unspecified, at most 25 DNS zones will be returned.
223+
pageToken: string, Optional. Page token, returned from a previous `ListDnsZones` call, that you can use to retrieve the next page.
224+
x__xgafv: string, V1 error format.
225+
Allowed values
226+
1 - v1 error format
227+
2 - v2 error format
228+
229+
Returns:
230+
An object of the form:
231+
232+
{ # Response for list DNS zones.
233+
&quot;dnsZones&quot;: [ # DNS zones in a given organization.
234+
{ # A DNS zone is a resource under an Apigee organization that is used to create a DNS peering with Apigee&#x27;s network. DNS peering will let Apigee instances resolve the hostnames created in a peered network.
235+
&quot;createTime&quot;: &quot;A String&quot;, # Output only. The time that this resource was created on the server.
236+
&quot;description&quot;: &quot;A String&quot;, # Required. Description of the resource. String of at most 1024 characters associated with this resource for the user&#x27;s convenience.
237+
&quot;domain&quot;: &quot;A String&quot;, # Required. The domain name for hosts in this private zone, for instance &quot;example.com.&quot;.
238+
&quot;name&quot;: &quot;A String&quot;, # Identifier. Unique name for the resource. Defined by the server Format: &quot;organizations/{organization}/dnsZones/{dns_zone}&quot;.
239+
&quot;peeringConfig&quot;: { # Fields for DNS PEERING zone. # DNS PEERING zone configuration.
240+
&quot;targetNetworkId&quot;: &quot;A String&quot;, # Required. The VPC network where the records for that private DNS zone&#x27;s namespace are available. Apigee will be performing DNS peering with this VPC network.
241+
&quot;targetProjectId&quot;: &quot;A String&quot;, # Required. The ID of the project that contains the producer VPC network.
242+
},
243+
&quot;state&quot;: &quot;A String&quot;, # Output only. State of the DNS Peering. Values other than `ACTIVE` mean the resource is not ready to use.
244+
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time that this resource was updated on the server.
245+
},
246+
],
247+
&quot;nextPageToken&quot;: &quot;A String&quot;, # Page token that you can include in an `ListDnsZones` request to retrieve the next page. If omitted, no subsequent pages exist.
248+
}</pre>
249+
</div>
250+
251+
<div class="method">
252+
<code class="details" id="list_next">list_next()</code>
253+
<pre>Retrieves the next page of results.
254+
255+
Args:
256+
previous_request: The request for the previous page. (required)
257+
previous_response: The response from the request for the previous page. (required)
258+
259+
Returns:
260+
A request object that you can call &#x27;execute()&#x27; on to request the next
261+
page. Returns None if there are no more items in the collection.
262+
</pre>
263+
</div>
264+
265+
</body></html>

docs/dyn/apigee_v1.organizations.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,11 @@ <h2>Instance Methods</h2>
114114
</p>
115115
<p class="firstline">Returns the developers Resource.</p>
116116

117+
<p class="toc_element">
118+
<code><a href="apigee_v1.organizations.dnsZones.html">dnsZones()</a></code>
119+
</p>
120+
<p class="firstline">Returns the dnsZones Resource.</p>
121+
117122
<p class="toc_element">
118123
<code><a href="apigee_v1.organizations.endpointAttachments.html">endpointAttachments()</a></code>
119124
</p>
@@ -174,6 +179,11 @@ <h2>Instance Methods</h2>
174179
</p>
175180
<p class="firstline">Returns the securityAssessmentResults Resource.</p>
176181

182+
<p class="toc_element">
183+
<code><a href="apigee_v1.organizations.securityMonitoringConditions.html">securityMonitoringConditions()</a></code>
184+
</p>
185+
<p class="firstline">Returns the securityMonitoringConditions Resource.</p>
186+
177187
<p class="toc_element">
178188
<code><a href="apigee_v1.organizations.securityProfiles.html">securityProfiles()</a></code>
179189
</p>

0 commit comments

Comments
 (0)