1<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> 82<p class="firstline">Creates a new ResourceRecordSet.</p> 83<p class="toc_element"> 84 <code><a href="#delete">delete(project, managedZone, name, type, clientOperationId=None, x__xgafv=None)</a></code></p> 85<p class="firstline">Deletes a previously created ResourceRecordSet.</p> 86<p class="toc_element"> 87 <code><a href="#get">get(project, managedZone, name, type, clientOperationId=None, x__xgafv=None)</a></code></p> 88<p class="firstline">Fetches the representation of an existing ResourceRecordSet.</p> 89<p class="toc_element"> 90 <code><a href="#patch">patch(project, managedZone, name, type, body=None, clientOperationId=None, x__xgafv=None)</a></code></p> 91<p class="firstline">Applies a partial update to an existing ResourceRecordSet.</p> 92<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> 100 <pre>Creates a new ResourceRecordSet. 101 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 108{ # A unit of data that is returned by the DNS servers. 109 "kind": "dns#resourceRecordSet", 110 "name": "A String", # For example, www.example.com. 111 "rrdatas": [ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples. 112 "A String", 113 ], 114 "signatureRrdatas": [ # As defined in RFC 4034 (section 3.2). 115 "A String", 116 ], 117 "ttl": 42, # Number of seconds that this ResourceRecordSet can be cached by resolvers. 118 "type": "A String", # The identifier of a supported record type. See the list of Supported DNS record types. 119} 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 130 { # A unit of data that is returned by the DNS servers. 131 "kind": "dns#resourceRecordSet", 132 "name": "A String", # For example, www.example.com. 133 "rrdatas": [ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples. 134 "A String", 135 ], 136 "signatureRrdatas": [ # As defined in RFC 4034 (section 3.2). 137 "A String", 138 ], 139 "ttl": 42, # Number of seconds that this ResourceRecordSet can be cached by resolvers. 140 "type": "A String", # The identifier of a supported record type. See the list of Supported DNS record types. 141}</pre> 142</div> 143 144<div class="method"> 145 <code class="details" id="delete">delete(project, managedZone, name, type, clientOperationId=None, x__xgafv=None)</code> 146 <pre>Deletes a previously created ResourceRecordSet. 147 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 158</pre> 159</div> 160 161<div class="method"> 162 <code class="details" id="get">get(project, managedZone, name, type, clientOperationId=None, x__xgafv=None)</code> 163 <pre>Fetches the representation of an existing ResourceRecordSet. 164 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 179 { # A unit of data that is returned by the DNS servers. 180 "kind": "dns#resourceRecordSet", 181 "name": "A String", # For example, www.example.com. 182 "rrdatas": [ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples. 183 "A String", 184 ], 185 "signatureRrdatas": [ # As defined in RFC 4034 (section 3.2). 186 "A String", 187 ], 188 "ttl": 42, # Number of seconds that this ResourceRecordSet can be cached by resolvers. 189 "type": "A String", # 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> 195 <pre>Applies a partial update to an existing ResourceRecordSet. 196 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 205{ # A unit of data that is returned by the DNS servers. 206 "kind": "dns#resourceRecordSet", 207 "name": "A String", # For example, www.example.com. 208 "rrdatas": [ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples. 209 "A String", 210 ], 211 "signatureRrdatas": [ # As defined in RFC 4034 (section 3.2). 212 "A String", 213 ], 214 "ttl": 42, # Number of seconds that this ResourceRecordSet can be cached by resolvers. 215 "type": "A String", # The identifier of a supported record type. See the list of Supported DNS record types. 216} 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 227 { # A unit of data that is returned by the DNS servers. 228 "kind": "dns#resourceRecordSet", 229 "name": "A String", # For example, www.example.com. 230 "rrdatas": [ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples. 231 "A String", 232 ], 233 "signatureRrdatas": [ # As defined in RFC 4034 (section 3.2). 234 "A String", 235 ], 236 "ttl": 42, # Number of seconds that this ResourceRecordSet can be cached by resolvers. 237 "type": "A String", # The identifier of a supported record type. See the list of Supported DNS record types. 238}</pre> 239</div> 240 241</body></html>