blob: 7df96799250e3a369e27fb87f576cceeb5d20e8b [file] [log] [blame]
Bu Sun Kim65020912020-05-20 12:08:20 -07001<html><body>
2<style>
3
4body, 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
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, 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="dns_v1.html">Google Cloud DNS API</a> . <a href="dns_v1.policies.html">policies</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="#create">create(project, body=None, clientOperationId=None)</a></code></p>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070079<p class="firstline"></p>
Bu Sun Kim65020912020-05-20 12:08:20 -070080<p class="toc_element">
81 <code><a href="#delete">delete(project, policy, clientOperationId=None)</a></code></p>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070082<p class="firstline"></p>
Bu Sun Kim65020912020-05-20 12:08:20 -070083<p class="toc_element">
84 <code><a href="#get">get(project, policy, clientOperationId=None)</a></code></p>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070085<p class="firstline"></p>
Bu Sun Kim65020912020-05-20 12:08:20 -070086<p class="toc_element">
87 <code><a href="#list">list(project, maxResults=None, pageToken=None)</a></code></p>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070088<p class="firstline"></p>
Bu Sun Kim65020912020-05-20 12:08:20 -070089<p class="toc_element">
90 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
91<p class="firstline">Retrieves the next page of results.</p>
92<p class="toc_element">
93 <code><a href="#patch">patch(project, policy, body=None, clientOperationId=None)</a></code></p>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070094<p class="firstline"></p>
Bu Sun Kim65020912020-05-20 12:08:20 -070095<p class="toc_element">
96 <code><a href="#update">update(project, policy, body=None, clientOperationId=None)</a></code></p>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070097<p class="firstline"></p>
Bu Sun Kim65020912020-05-20 12:08:20 -070098<h3>Method Details</h3>
99<div class="method">
100 <code class="details" id="create">create(project, body=None, clientOperationId=None)</code>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700101 <pre>
Bu Sun Kim65020912020-05-20 12:08:20 -0700102
103Args:
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700104 project: string, A parameter (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700105 body: object, The request body.
106 The object takes the form of:
107
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700108{
109 &quot;alternativeNameServerConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700110 &quot;kind&quot;: &quot;dns#policyAlternativeNameServerConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyAlternativeNameServerConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700111 &quot;targetNameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700112 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700113 &quot;forwardingPath&quot;: &quot;A String&quot;,
114 &quot;ipv4Address&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700115 &quot;kind&quot;: &quot;dns#policyAlternativeNameServerConfigTargetNameServer&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyAlternativeNameServerConfigTargetNameServer&quot;.
116 },
117 ],
118 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700119 &quot;description&quot;: &quot;A String&quot;,
120 &quot;enableInboundForwarding&quot;: True or False,
121 &quot;enableLogging&quot;: True or False,
122 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700123 &quot;kind&quot;: &quot;dns#policy&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policy&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700124 &quot;name&quot;: &quot;A String&quot;,
125 &quot;networks&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700126 {
127 &quot;kind&quot;: &quot;dns#policyNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700128 &quot;networkUrl&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700129 },
130 ],
131 }
132
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700133 clientOperationId: string, A parameter
Bu Sun Kim65020912020-05-20 12:08:20 -0700134
135Returns:
136 An object of the form:
137
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700138 {
139 &quot;alternativeNameServerConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700140 &quot;kind&quot;: &quot;dns#policyAlternativeNameServerConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyAlternativeNameServerConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700141 &quot;targetNameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700142 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700143 &quot;forwardingPath&quot;: &quot;A String&quot;,
144 &quot;ipv4Address&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700145 &quot;kind&quot;: &quot;dns#policyAlternativeNameServerConfigTargetNameServer&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyAlternativeNameServerConfigTargetNameServer&quot;.
146 },
147 ],
148 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700149 &quot;description&quot;: &quot;A String&quot;,
150 &quot;enableInboundForwarding&quot;: True or False,
151 &quot;enableLogging&quot;: True or False,
152 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700153 &quot;kind&quot;: &quot;dns#policy&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policy&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700154 &quot;name&quot;: &quot;A String&quot;,
155 &quot;networks&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700156 {
157 &quot;kind&quot;: &quot;dns#policyNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700158 &quot;networkUrl&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700159 },
160 ],
161 }</pre>
162</div>
163
164<div class="method">
165 <code class="details" id="delete">delete(project, policy, clientOperationId=None)</code>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700166 <pre>
Bu Sun Kim65020912020-05-20 12:08:20 -0700167
168Args:
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700169 project: string, A parameter (required)
170 policy: string, A parameter (required)
171 clientOperationId: string, A parameter
Bu Sun Kim65020912020-05-20 12:08:20 -0700172</pre>
173</div>
174
175<div class="method">
176 <code class="details" id="get">get(project, policy, clientOperationId=None)</code>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700177 <pre>
Bu Sun Kim65020912020-05-20 12:08:20 -0700178
179Args:
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700180 project: string, A parameter (required)
181 policy: string, A parameter (required)
182 clientOperationId: string, A parameter
Bu Sun Kim65020912020-05-20 12:08:20 -0700183
184Returns:
185 An object of the form:
186
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700187 {
188 &quot;alternativeNameServerConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700189 &quot;kind&quot;: &quot;dns#policyAlternativeNameServerConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyAlternativeNameServerConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700190 &quot;targetNameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700191 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700192 &quot;forwardingPath&quot;: &quot;A String&quot;,
193 &quot;ipv4Address&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700194 &quot;kind&quot;: &quot;dns#policyAlternativeNameServerConfigTargetNameServer&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyAlternativeNameServerConfigTargetNameServer&quot;.
195 },
196 ],
197 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700198 &quot;description&quot;: &quot;A String&quot;,
199 &quot;enableInboundForwarding&quot;: True or False,
200 &quot;enableLogging&quot;: True or False,
201 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700202 &quot;kind&quot;: &quot;dns#policy&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policy&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700203 &quot;name&quot;: &quot;A String&quot;,
204 &quot;networks&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700205 {
206 &quot;kind&quot;: &quot;dns#policyNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700207 &quot;networkUrl&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700208 },
209 ],
210 }</pre>
211</div>
212
213<div class="method">
214 <code class="details" id="list">list(project, maxResults=None, pageToken=None)</code>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700215 <pre>
Bu Sun Kim65020912020-05-20 12:08:20 -0700216
217Args:
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700218 project: string, A parameter (required)
219 maxResults: integer, A parameter
220 pageToken: string, A parameter
Bu Sun Kim65020912020-05-20 12:08:20 -0700221
222Returns:
223 An object of the form:
224
225 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700226 &quot;header&quot;: {
227 &quot;operationId&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700228 },
229 &quot;kind&quot;: &quot;dns#policiesListResponse&quot;, # Type of resource.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700230 &quot;nextPageToken&quot;: &quot;A String&quot;,
231 &quot;policies&quot;: [
232 {
233 &quot;alternativeNameServerConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700234 &quot;kind&quot;: &quot;dns#policyAlternativeNameServerConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyAlternativeNameServerConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700235 &quot;targetNameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700236 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700237 &quot;forwardingPath&quot;: &quot;A String&quot;,
238 &quot;ipv4Address&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700239 &quot;kind&quot;: &quot;dns#policyAlternativeNameServerConfigTargetNameServer&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyAlternativeNameServerConfigTargetNameServer&quot;.
240 },
241 ],
242 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700243 &quot;description&quot;: &quot;A String&quot;,
244 &quot;enableInboundForwarding&quot;: True or False,
245 &quot;enableLogging&quot;: True or False,
246 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700247 &quot;kind&quot;: &quot;dns#policy&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policy&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700248 &quot;name&quot;: &quot;A String&quot;,
249 &quot;networks&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700250 {
251 &quot;kind&quot;: &quot;dns#policyNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700252 &quot;networkUrl&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700253 },
254 ],
255 },
256 ],
257 }</pre>
258</div>
259
260<div class="method">
261 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
262 <pre>Retrieves the next page of results.
263
264Args:
265 previous_request: The request for the previous page. (required)
266 previous_response: The response from the request for the previous page. (required)
267
268Returns:
269 A request object that you can call &#x27;execute()&#x27; on to request the next
270 page. Returns None if there are no more items in the collection.
271 </pre>
272</div>
273
274<div class="method">
275 <code class="details" id="patch">patch(project, policy, body=None, clientOperationId=None)</code>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700276 <pre>
Bu Sun Kim65020912020-05-20 12:08:20 -0700277
278Args:
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700279 project: string, A parameter (required)
280 policy: string, A parameter (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700281 body: object, The request body.
282 The object takes the form of:
283
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700284{
285 &quot;alternativeNameServerConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700286 &quot;kind&quot;: &quot;dns#policyAlternativeNameServerConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyAlternativeNameServerConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700287 &quot;targetNameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700288 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700289 &quot;forwardingPath&quot;: &quot;A String&quot;,
290 &quot;ipv4Address&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700291 &quot;kind&quot;: &quot;dns#policyAlternativeNameServerConfigTargetNameServer&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyAlternativeNameServerConfigTargetNameServer&quot;.
292 },
293 ],
294 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700295 &quot;description&quot;: &quot;A String&quot;,
296 &quot;enableInboundForwarding&quot;: True or False,
297 &quot;enableLogging&quot;: True or False,
298 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700299 &quot;kind&quot;: &quot;dns#policy&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policy&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700300 &quot;name&quot;: &quot;A String&quot;,
301 &quot;networks&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700302 {
303 &quot;kind&quot;: &quot;dns#policyNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700304 &quot;networkUrl&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700305 },
306 ],
307 }
308
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700309 clientOperationId: string, A parameter
Bu Sun Kim65020912020-05-20 12:08:20 -0700310
311Returns:
312 An object of the form:
313
314 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700315 &quot;header&quot;: {
316 &quot;operationId&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700317 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700318 &quot;policy&quot;: {
319 &quot;alternativeNameServerConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700320 &quot;kind&quot;: &quot;dns#policyAlternativeNameServerConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyAlternativeNameServerConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700321 &quot;targetNameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700322 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700323 &quot;forwardingPath&quot;: &quot;A String&quot;,
324 &quot;ipv4Address&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700325 &quot;kind&quot;: &quot;dns#policyAlternativeNameServerConfigTargetNameServer&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyAlternativeNameServerConfigTargetNameServer&quot;.
326 },
327 ],
328 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700329 &quot;description&quot;: &quot;A String&quot;,
330 &quot;enableInboundForwarding&quot;: True or False,
331 &quot;enableLogging&quot;: True or False,
332 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700333 &quot;kind&quot;: &quot;dns#policy&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policy&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700334 &quot;name&quot;: &quot;A String&quot;,
335 &quot;networks&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700336 {
337 &quot;kind&quot;: &quot;dns#policyNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700338 &quot;networkUrl&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700339 },
340 ],
341 },
342 }</pre>
343</div>
344
345<div class="method">
346 <code class="details" id="update">update(project, policy, body=None, clientOperationId=None)</code>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700347 <pre>
Bu Sun Kim65020912020-05-20 12:08:20 -0700348
349Args:
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700350 project: string, A parameter (required)
351 policy: string, A parameter (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700352 body: object, The request body.
353 The object takes the form of:
354
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700355{
356 &quot;alternativeNameServerConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700357 &quot;kind&quot;: &quot;dns#policyAlternativeNameServerConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyAlternativeNameServerConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700358 &quot;targetNameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700359 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700360 &quot;forwardingPath&quot;: &quot;A String&quot;,
361 &quot;ipv4Address&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700362 &quot;kind&quot;: &quot;dns#policyAlternativeNameServerConfigTargetNameServer&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyAlternativeNameServerConfigTargetNameServer&quot;.
363 },
364 ],
365 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700366 &quot;description&quot;: &quot;A String&quot;,
367 &quot;enableInboundForwarding&quot;: True or False,
368 &quot;enableLogging&quot;: True or False,
369 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700370 &quot;kind&quot;: &quot;dns#policy&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policy&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700371 &quot;name&quot;: &quot;A String&quot;,
372 &quot;networks&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700373 {
374 &quot;kind&quot;: &quot;dns#policyNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700375 &quot;networkUrl&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700376 },
377 ],
378 }
379
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700380 clientOperationId: string, A parameter
Bu Sun Kim65020912020-05-20 12:08:20 -0700381
382Returns:
383 An object of the form:
384
385 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700386 &quot;header&quot;: {
387 &quot;operationId&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700388 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700389 &quot;policy&quot;: {
390 &quot;alternativeNameServerConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700391 &quot;kind&quot;: &quot;dns#policyAlternativeNameServerConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyAlternativeNameServerConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700392 &quot;targetNameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700393 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700394 &quot;forwardingPath&quot;: &quot;A String&quot;,
395 &quot;ipv4Address&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700396 &quot;kind&quot;: &quot;dns#policyAlternativeNameServerConfigTargetNameServer&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyAlternativeNameServerConfigTargetNameServer&quot;.
397 },
398 ],
399 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700400 &quot;description&quot;: &quot;A String&quot;,
401 &quot;enableInboundForwarding&quot;: True or False,
402 &quot;enableLogging&quot;: True or False,
403 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700404 &quot;kind&quot;: &quot;dns#policy&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policy&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700405 &quot;name&quot;: &quot;A String&quot;,
406 &quot;networks&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700407 {
408 &quot;kind&quot;: &quot;dns#policyNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#policyNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700409 &quot;networkUrl&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700410 },
411 ],
412 },
413 }</pre>
414</div>
415
416</body></html>