blob: 6cdb6378bdec55a0454b246b5a33e36238e96265 [file] [log] [blame]
Bu Sun Kim673ec5c2020-11-16 11:05:03 -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_v1beta2.html">Cloud DNS API</a> . <a href="dns_v1beta2.projects.html">projects</a> . <a href="dns_v1beta2.projects.managedZones.html">managedZones</a> . <a href="dns_v1beta2.projects.managedZones.rrsets.html">rrsets</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(project, managedZone, body=None, clientOperationId=None, x__xgafv=None)</a></code></p>
yoshi-code-bota8b35b92021-03-31 13:33:30 -070082<p class="firstline">Creates a new ResourceRecordSet.</p>
Bu Sun Kim673ec5c2020-11-16 11:05:03 -070083<p class="toc_element">
84 <code><a href="#delete">delete(project, managedZone, name, type, clientOperationId=None, x__xgafv=None)</a></code></p>
yoshi-code-bota8b35b92021-03-31 13:33:30 -070085<p class="firstline">Deletes a previously created ResourceRecordSet.</p>
Bu Sun Kim673ec5c2020-11-16 11:05:03 -070086<p class="toc_element">
87 <code><a href="#get">get(project, managedZone, name, type, clientOperationId=None, x__xgafv=None)</a></code></p>
yoshi-code-bota8b35b92021-03-31 13:33:30 -070088<p class="firstline">Fetches the representation of an existing ResourceRecordSet.</p>
Bu Sun Kim673ec5c2020-11-16 11:05:03 -070089<p class="toc_element">
90 <code><a href="#patch">patch(project, managedZone, name, type, body=None, clientOperationId=None, x__xgafv=None)</a></code></p>
yoshi-code-bota8b35b92021-03-31 13:33:30 -070091<p class="firstline">Applies a partial update to an existing ResourceRecordSet.</p>
Bu Sun Kim673ec5c2020-11-16 11:05:03 -070092<h3>Method Details</h3>
93<div class="method">
94 <code class="details" id="close">close()</code>
95 <pre>Close httplib2 connections.</pre>
96</div>
97
98<div class="method">
99 <code class="details" id="create">create(project, managedZone, body=None, clientOperationId=None, x__xgafv=None)</code>
yoshi-code-bota8b35b92021-03-31 13:33:30 -0700100 <pre>Creates a new ResourceRecordSet.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700101
102Args:
103 project: string, Identifies the project addressed by this request. (required)
104 managedZone: string, Identifies the managed zone addressed by this request. Can be the managed zone name or ID. (required)
105 body: object, The request body.
106 The object takes the form of:
107
yoshi-code-bota8b35b92021-03-31 13:33:30 -0700108{ # A unit of data that is returned by the DNS servers.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800109 &quot;kind&quot;: &quot;dns#resourceRecordSet&quot;,
110 &quot;name&quot;: &quot;A String&quot;, # For example, www.example.com.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800111 &quot;rrdatas&quot;: [ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples.
112 &quot;A String&quot;,
113 ],
114 &quot;signatureRrdatas&quot;: [ # As defined in RFC 4034 (section 3.2).
115 &quot;A String&quot;,
116 ],
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800117 &quot;ttl&quot;: 42, # Number of seconds that this ResourceRecordSet can be cached by resolvers.
118 &quot;type&quot;: &quot;A String&quot;, # The identifier of a supported record type. See the list of Supported DNS record types.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700119}
120
121 clientOperationId: string, For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection.
122 x__xgafv: string, V1 error format.
123 Allowed values
124 1 - v1 error format
125 2 - v2 error format
126
127Returns:
128 An object of the form:
129
yoshi-code-bota8b35b92021-03-31 13:33:30 -0700130 { # A unit of data that is returned by the DNS servers.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800131 &quot;kind&quot;: &quot;dns#resourceRecordSet&quot;,
132 &quot;name&quot;: &quot;A String&quot;, # For example, www.example.com.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800133 &quot;rrdatas&quot;: [ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples.
134 &quot;A String&quot;,
135 ],
136 &quot;signatureRrdatas&quot;: [ # As defined in RFC 4034 (section 3.2).
137 &quot;A String&quot;,
138 ],
139 &quot;ttl&quot;: 42, # Number of seconds that this ResourceRecordSet can be cached by resolvers.
140 &quot;type&quot;: &quot;A String&quot;, # The identifier of a supported record type. See the list of Supported DNS record types.
141}</pre>
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700142</div>
143
144<div class="method">
145 <code class="details" id="delete">delete(project, managedZone, name, type, clientOperationId=None, x__xgafv=None)</code>
yoshi-code-bota8b35b92021-03-31 13:33:30 -0700146 <pre>Deletes a previously created ResourceRecordSet.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700147
148Args:
149 project: string, Identifies the project addressed by this request. (required)
150 managedZone: string, Identifies the managed zone addressed by this request. Can be the managed zone name or ID. (required)
151 name: string, Fully qualified domain name. (required)
152 type: string, RRSet type. (required)
153 clientOperationId: string, For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection.
154 x__xgafv: string, V1 error format.
155 Allowed values
156 1 - v1 error format
157 2 - v2 error format
yoshi-code-botb6dc1b92021-03-02 11:49:08 -0800158</pre>
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700159</div>
160
161<div class="method">
162 <code class="details" id="get">get(project, managedZone, name, type, clientOperationId=None, x__xgafv=None)</code>
yoshi-code-bota8b35b92021-03-31 13:33:30 -0700163 <pre>Fetches the representation of an existing ResourceRecordSet.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700164
165Args:
166 project: string, Identifies the project addressed by this request. (required)
167 managedZone: string, Identifies the managed zone addressed by this request. Can be the managed zone name or ID. (required)
168 name: string, Fully qualified domain name. (required)
169 type: string, RRSet type. (required)
170 clientOperationId: string, For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection.
171 x__xgafv: string, V1 error format.
172 Allowed values
173 1 - v1 error format
174 2 - v2 error format
175
176Returns:
177 An object of the form:
178
yoshi-code-bota8b35b92021-03-31 13:33:30 -0700179 { # A unit of data that is returned by the DNS servers.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800180 &quot;kind&quot;: &quot;dns#resourceRecordSet&quot;,
181 &quot;name&quot;: &quot;A String&quot;, # For example, www.example.com.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800182 &quot;rrdatas&quot;: [ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples.
183 &quot;A String&quot;,
184 ],
185 &quot;signatureRrdatas&quot;: [ # As defined in RFC 4034 (section 3.2).
186 &quot;A String&quot;,
187 ],
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800188 &quot;ttl&quot;: 42, # Number of seconds that this ResourceRecordSet can be cached by resolvers.
189 &quot;type&quot;: &quot;A String&quot;, # The identifier of a supported record type. See the list of Supported DNS record types.
190}</pre>
191</div>
192
193<div class="method">
194 <code class="details" id="patch">patch(project, managedZone, name, type, body=None, clientOperationId=None, x__xgafv=None)</code>
yoshi-code-bota8b35b92021-03-31 13:33:30 -0700195 <pre>Applies a partial update to an existing ResourceRecordSet.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800196
197Args:
198 project: string, Identifies the project addressed by this request. (required)
199 managedZone: string, Identifies the managed zone addressed by this request. Can be the managed zone name or ID. (required)
200 name: string, Fully qualified domain name. (required)
201 type: string, RRSet type. (required)
202 body: object, The request body.
203 The object takes the form of:
204
yoshi-code-bota8b35b92021-03-31 13:33:30 -0700205{ # A unit of data that is returned by the DNS servers.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800206 &quot;kind&quot;: &quot;dns#resourceRecordSet&quot;,
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800207 &quot;name&quot;: &quot;A String&quot;, # For example, www.example.com.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800208 &quot;rrdatas&quot;: [ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples.
209 &quot;A String&quot;,
210 ],
211 &quot;signatureRrdatas&quot;: [ # As defined in RFC 4034 (section 3.2).
212 &quot;A String&quot;,
213 ],
214 &quot;ttl&quot;: 42, # Number of seconds that this ResourceRecordSet can be cached by resolvers.
215 &quot;type&quot;: &quot;A String&quot;, # The identifier of a supported record type. See the list of Supported DNS record types.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700216}
217
218 clientOperationId: string, For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection.
219 x__xgafv: string, V1 error format.
220 Allowed values
221 1 - v1 error format
222 2 - v2 error format
223
224Returns:
225 An object of the form:
226
yoshi-code-bota8b35b92021-03-31 13:33:30 -0700227 { # A unit of data that is returned by the DNS servers.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800228 &quot;kind&quot;: &quot;dns#resourceRecordSet&quot;,
229 &quot;name&quot;: &quot;A String&quot;, # For example, www.example.com.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800230 &quot;rrdatas&quot;: [ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples.
231 &quot;A String&quot;,
232 ],
233 &quot;signatureRrdatas&quot;: [ # As defined in RFC 4034 (section 3.2).
234 &quot;A String&quot;,
235 ],
236 &quot;ttl&quot;: 42, # Number of seconds that this ResourceRecordSet can be cached by resolvers.
237 &quot;type&quot;: &quot;A String&quot;, # The identifier of a supported record type. See the list of Supported DNS record types.
238}</pre>
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700239</div>
240
241</body></html>