Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/updraftp.../includes/Google/Service
File: Dns.php
<?php
[0] Fix | Delete
/*
[1] Fix | Delete
* Copyright 2010 Google Inc.
[2] Fix | Delete
*
[3] Fix | Delete
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
[4] Fix | Delete
* use this file except in compliance with the License. You may obtain a copy of
[5] Fix | Delete
* the License at
[6] Fix | Delete
*
[7] Fix | Delete
* http://www.apache.org/licenses/LICENSE-2.0
[8] Fix | Delete
*
[9] Fix | Delete
* Unless required by applicable law or agreed to in writing, software
[10] Fix | Delete
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
[11] Fix | Delete
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
[12] Fix | Delete
* License for the specific language governing permissions and limitations under
[13] Fix | Delete
* the License.
[14] Fix | Delete
*/
[15] Fix | Delete
[16] Fix | Delete
/**
[17] Fix | Delete
* Service definition for Dns (v1).
[18] Fix | Delete
*
[19] Fix | Delete
* <p>
[20] Fix | Delete
* The Google Cloud DNS API provides services for configuring and serving
[21] Fix | Delete
* authoritative DNS records.</p>
[22] Fix | Delete
*
[23] Fix | Delete
* <p>
[24] Fix | Delete
* For more information about this service, see the API
[25] Fix | Delete
* <a href="https://developers.google.com/cloud-dns" target="_blank">Documentation</a>
[26] Fix | Delete
* </p>
[27] Fix | Delete
*
[28] Fix | Delete
* @author Google, Inc.
[29] Fix | Delete
*/
[30] Fix | Delete
class Google_Service_Dns extends UDP_Google_Service
[31] Fix | Delete
{
[32] Fix | Delete
/** View and manage your data across Google Cloud Platform services. */
[33] Fix | Delete
const CLOUD_PLATFORM =
[34] Fix | Delete
"https://www.googleapis.com/auth/cloud-platform";
[35] Fix | Delete
/** View your DNS records hosted by Google Cloud DNS. */
[36] Fix | Delete
const NDEV_CLOUDDNS_READONLY =
[37] Fix | Delete
"https://www.googleapis.com/auth/ndev.clouddns.readonly";
[38] Fix | Delete
/** View and manage your DNS records hosted by Google Cloud DNS. */
[39] Fix | Delete
const NDEV_CLOUDDNS_READWRITE =
[40] Fix | Delete
"https://www.googleapis.com/auth/ndev.clouddns.readwrite";
[41] Fix | Delete
[42] Fix | Delete
public $changes;
[43] Fix | Delete
public $managedZones;
[44] Fix | Delete
public $projects;
[45] Fix | Delete
public $resourceRecordSets;
[46] Fix | Delete
[47] Fix | Delete
[48] Fix | Delete
/**
[49] Fix | Delete
* Constructs the internal representation of the Dns service.
[50] Fix | Delete
*
[51] Fix | Delete
* @param Google_Client $client
[52] Fix | Delete
*/
[53] Fix | Delete
public function __construct(UDP_Google_Client $client)
[54] Fix | Delete
{
[55] Fix | Delete
parent::__construct($client);
[56] Fix | Delete
$this->servicePath = 'dns/v1/projects/';
[57] Fix | Delete
$this->version = 'v1';
[58] Fix | Delete
$this->serviceName = 'dns';
[59] Fix | Delete
[60] Fix | Delete
$this->changes = new Google_Service_Dns_Changes_Resource(
[61] Fix | Delete
$this,
[62] Fix | Delete
$this->serviceName,
[63] Fix | Delete
'changes',
[64] Fix | Delete
array(
[65] Fix | Delete
'methods' => array(
[66] Fix | Delete
'create' => array(
[67] Fix | Delete
'path' => '{project}/managedZones/{managedZone}/changes',
[68] Fix | Delete
'httpMethod' => 'POST',
[69] Fix | Delete
'parameters' => array(
[70] Fix | Delete
'project' => array(
[71] Fix | Delete
'location' => 'path',
[72] Fix | Delete
'type' => 'string',
[73] Fix | Delete
'required' => true,
[74] Fix | Delete
),
[75] Fix | Delete
'managedZone' => array(
[76] Fix | Delete
'location' => 'path',
[77] Fix | Delete
'type' => 'string',
[78] Fix | Delete
'required' => true,
[79] Fix | Delete
),
[80] Fix | Delete
),
[81] Fix | Delete
),'get' => array(
[82] Fix | Delete
'path' => '{project}/managedZones/{managedZone}/changes/{changeId}',
[83] Fix | Delete
'httpMethod' => 'GET',
[84] Fix | Delete
'parameters' => array(
[85] Fix | Delete
'project' => array(
[86] Fix | Delete
'location' => 'path',
[87] Fix | Delete
'type' => 'string',
[88] Fix | Delete
'required' => true,
[89] Fix | Delete
),
[90] Fix | Delete
'managedZone' => array(
[91] Fix | Delete
'location' => 'path',
[92] Fix | Delete
'type' => 'string',
[93] Fix | Delete
'required' => true,
[94] Fix | Delete
),
[95] Fix | Delete
'changeId' => array(
[96] Fix | Delete
'location' => 'path',
[97] Fix | Delete
'type' => 'string',
[98] Fix | Delete
'required' => true,
[99] Fix | Delete
),
[100] Fix | Delete
),
[101] Fix | Delete
),'list' => array(
[102] Fix | Delete
'path' => '{project}/managedZones/{managedZone}/changes',
[103] Fix | Delete
'httpMethod' => 'GET',
[104] Fix | Delete
'parameters' => array(
[105] Fix | Delete
'project' => array(
[106] Fix | Delete
'location' => 'path',
[107] Fix | Delete
'type' => 'string',
[108] Fix | Delete
'required' => true,
[109] Fix | Delete
),
[110] Fix | Delete
'managedZone' => array(
[111] Fix | Delete
'location' => 'path',
[112] Fix | Delete
'type' => 'string',
[113] Fix | Delete
'required' => true,
[114] Fix | Delete
),
[115] Fix | Delete
'maxResults' => array(
[116] Fix | Delete
'location' => 'query',
[117] Fix | Delete
'type' => 'integer',
[118] Fix | Delete
),
[119] Fix | Delete
'pageToken' => array(
[120] Fix | Delete
'location' => 'query',
[121] Fix | Delete
'type' => 'string',
[122] Fix | Delete
),
[123] Fix | Delete
'sortBy' => array(
[124] Fix | Delete
'location' => 'query',
[125] Fix | Delete
'type' => 'string',
[126] Fix | Delete
),
[127] Fix | Delete
'sortOrder' => array(
[128] Fix | Delete
'location' => 'query',
[129] Fix | Delete
'type' => 'string',
[130] Fix | Delete
),
[131] Fix | Delete
),
[132] Fix | Delete
),
[133] Fix | Delete
)
[134] Fix | Delete
)
[135] Fix | Delete
);
[136] Fix | Delete
$this->managedZones = new Google_Service_Dns_ManagedZones_Resource(
[137] Fix | Delete
$this,
[138] Fix | Delete
$this->serviceName,
[139] Fix | Delete
'managedZones',
[140] Fix | Delete
array(
[141] Fix | Delete
'methods' => array(
[142] Fix | Delete
'create' => array(
[143] Fix | Delete
'path' => '{project}/managedZones',
[144] Fix | Delete
'httpMethod' => 'POST',
[145] Fix | Delete
'parameters' => array(
[146] Fix | Delete
'project' => array(
[147] Fix | Delete
'location' => 'path',
[148] Fix | Delete
'type' => 'string',
[149] Fix | Delete
'required' => true,
[150] Fix | Delete
),
[151] Fix | Delete
),
[152] Fix | Delete
),'delete' => array(
[153] Fix | Delete
'path' => '{project}/managedZones/{managedZone}',
[154] Fix | Delete
'httpMethod' => 'DELETE',
[155] Fix | Delete
'parameters' => array(
[156] Fix | Delete
'project' => array(
[157] Fix | Delete
'location' => 'path',
[158] Fix | Delete
'type' => 'string',
[159] Fix | Delete
'required' => true,
[160] Fix | Delete
),
[161] Fix | Delete
'managedZone' => array(
[162] Fix | Delete
'location' => 'path',
[163] Fix | Delete
'type' => 'string',
[164] Fix | Delete
'required' => true,
[165] Fix | Delete
),
[166] Fix | Delete
),
[167] Fix | Delete
),'get' => array(
[168] Fix | Delete
'path' => '{project}/managedZones/{managedZone}',
[169] Fix | Delete
'httpMethod' => 'GET',
[170] Fix | Delete
'parameters' => array(
[171] Fix | Delete
'project' => array(
[172] Fix | Delete
'location' => 'path',
[173] Fix | Delete
'type' => 'string',
[174] Fix | Delete
'required' => true,
[175] Fix | Delete
),
[176] Fix | Delete
'managedZone' => array(
[177] Fix | Delete
'location' => 'path',
[178] Fix | Delete
'type' => 'string',
[179] Fix | Delete
'required' => true,
[180] Fix | Delete
),
[181] Fix | Delete
),
[182] Fix | Delete
),'list' => array(
[183] Fix | Delete
'path' => '{project}/managedZones',
[184] Fix | Delete
'httpMethod' => 'GET',
[185] Fix | Delete
'parameters' => array(
[186] Fix | Delete
'project' => array(
[187] Fix | Delete
'location' => 'path',
[188] Fix | Delete
'type' => 'string',
[189] Fix | Delete
'required' => true,
[190] Fix | Delete
),
[191] Fix | Delete
'pageToken' => array(
[192] Fix | Delete
'location' => 'query',
[193] Fix | Delete
'type' => 'string',
[194] Fix | Delete
),
[195] Fix | Delete
'maxResults' => array(
[196] Fix | Delete
'location' => 'query',
[197] Fix | Delete
'type' => 'integer',
[198] Fix | Delete
),
[199] Fix | Delete
),
[200] Fix | Delete
),
[201] Fix | Delete
)
[202] Fix | Delete
)
[203] Fix | Delete
);
[204] Fix | Delete
$this->projects = new Google_Service_Dns_Projects_Resource(
[205] Fix | Delete
$this,
[206] Fix | Delete
$this->serviceName,
[207] Fix | Delete
'projects',
[208] Fix | Delete
array(
[209] Fix | Delete
'methods' => array(
[210] Fix | Delete
'get' => array(
[211] Fix | Delete
'path' => '{project}',
[212] Fix | Delete
'httpMethod' => 'GET',
[213] Fix | Delete
'parameters' => array(
[214] Fix | Delete
'project' => array(
[215] Fix | Delete
'location' => 'path',
[216] Fix | Delete
'type' => 'string',
[217] Fix | Delete
'required' => true,
[218] Fix | Delete
),
[219] Fix | Delete
),
[220] Fix | Delete
),
[221] Fix | Delete
)
[222] Fix | Delete
)
[223] Fix | Delete
);
[224] Fix | Delete
$this->resourceRecordSets = new Google_Service_Dns_ResourceRecordSets_Resource(
[225] Fix | Delete
$this,
[226] Fix | Delete
$this->serviceName,
[227] Fix | Delete
'resourceRecordSets',
[228] Fix | Delete
array(
[229] Fix | Delete
'methods' => array(
[230] Fix | Delete
'list' => array(
[231] Fix | Delete
'path' => '{project}/managedZones/{managedZone}/rrsets',
[232] Fix | Delete
'httpMethod' => 'GET',
[233] Fix | Delete
'parameters' => array(
[234] Fix | Delete
'project' => array(
[235] Fix | Delete
'location' => 'path',
[236] Fix | Delete
'type' => 'string',
[237] Fix | Delete
'required' => true,
[238] Fix | Delete
),
[239] Fix | Delete
'managedZone' => array(
[240] Fix | Delete
'location' => 'path',
[241] Fix | Delete
'type' => 'string',
[242] Fix | Delete
'required' => true,
[243] Fix | Delete
),
[244] Fix | Delete
'name' => array(
[245] Fix | Delete
'location' => 'query',
[246] Fix | Delete
'type' => 'string',
[247] Fix | Delete
),
[248] Fix | Delete
'maxResults' => array(
[249] Fix | Delete
'location' => 'query',
[250] Fix | Delete
'type' => 'integer',
[251] Fix | Delete
),
[252] Fix | Delete
'pageToken' => array(
[253] Fix | Delete
'location' => 'query',
[254] Fix | Delete
'type' => 'string',
[255] Fix | Delete
),
[256] Fix | Delete
'type' => array(
[257] Fix | Delete
'location' => 'query',
[258] Fix | Delete
'type' => 'string',
[259] Fix | Delete
),
[260] Fix | Delete
),
[261] Fix | Delete
),
[262] Fix | Delete
)
[263] Fix | Delete
)
[264] Fix | Delete
);
[265] Fix | Delete
}
[266] Fix | Delete
}
[267] Fix | Delete
[268] Fix | Delete
[269] Fix | Delete
/**
[270] Fix | Delete
* The "changes" collection of methods.
[271] Fix | Delete
* Typical usage is:
[272] Fix | Delete
* <code>
[273] Fix | Delete
* $dnsService = new Google_Service_Dns(...);
[274] Fix | Delete
* $changes = $dnsService->changes;
[275] Fix | Delete
* </code>
[276] Fix | Delete
*/
[277] Fix | Delete
class Google_Service_Dns_Changes_Resource extends UDP_Google_Service_Resource
[278] Fix | Delete
{
[279] Fix | Delete
[280] Fix | Delete
/**
[281] Fix | Delete
* Atomically update the ResourceRecordSet collection. (changes.create)
[282] Fix | Delete
*
[283] Fix | Delete
* @param string $project Identifies the project addressed by this request.
[284] Fix | Delete
* @param string $managedZone Identifies the managed zone addressed by this
[285] Fix | Delete
* request. Can be the managed zone name or id.
[286] Fix | Delete
* @param Google_Change $postBody
[287] Fix | Delete
* @param array $optParams Optional parameters.
[288] Fix | Delete
* @return Google_Service_Dns_Change
[289] Fix | Delete
*/
[290] Fix | Delete
public function create($project, $managedZone, Google_Service_Dns_Change $postBody, $optParams = array())
[291] Fix | Delete
{
[292] Fix | Delete
$params = array('project' => $project, 'managedZone' => $managedZone, 'postBody' => $postBody);
[293] Fix | Delete
$params = array_merge($params, $optParams);
[294] Fix | Delete
return $this->call('create', array($params), "Google_Service_Dns_Change");
[295] Fix | Delete
}
[296] Fix | Delete
[297] Fix | Delete
/**
[298] Fix | Delete
* Fetch the representation of an existing Change. (changes.get)
[299] Fix | Delete
*
[300] Fix | Delete
* @param string $project Identifies the project addressed by this request.
[301] Fix | Delete
* @param string $managedZone Identifies the managed zone addressed by this
[302] Fix | Delete
* request. Can be the managed zone name or id.
[303] Fix | Delete
* @param string $changeId The identifier of the requested change, from a
[304] Fix | Delete
* previous ResourceRecordSetsChangeResponse.
[305] Fix | Delete
* @param array $optParams Optional parameters.
[306] Fix | Delete
* @return Google_Service_Dns_Change
[307] Fix | Delete
*/
[308] Fix | Delete
public function get($project, $managedZone, $changeId, $optParams = array())
[309] Fix | Delete
{
[310] Fix | Delete
$params = array('project' => $project, 'managedZone' => $managedZone, 'changeId' => $changeId);
[311] Fix | Delete
$params = array_merge($params, $optParams);
[312] Fix | Delete
return $this->call('get', array($params), "Google_Service_Dns_Change");
[313] Fix | Delete
}
[314] Fix | Delete
[315] Fix | Delete
/**
[316] Fix | Delete
* Enumerate Changes to a ResourceRecordSet collection. (changes.listChanges)
[317] Fix | Delete
*
[318] Fix | Delete
* @param string $project Identifies the project addressed by this request.
[319] Fix | Delete
* @param string $managedZone Identifies the managed zone addressed by this
[320] Fix | Delete
* request. Can be the managed zone name or id.
[321] Fix | Delete
* @param array $optParams Optional parameters.
[322] Fix | Delete
*
[323] Fix | Delete
* @opt_param int maxResults Optional. Maximum number of results to be returned.
[324] Fix | Delete
* If unspecified, the server will decide how many results to return.
[325] Fix | Delete
* @opt_param string pageToken Optional. A tag returned by a previous list
[326] Fix | Delete
* request that was truncated. Use this parameter to continue a previous list
[327] Fix | Delete
* request.
[328] Fix | Delete
* @opt_param string sortBy Sorting criterion. The only supported value is
[329] Fix | Delete
* change sequence.
[330] Fix | Delete
* @opt_param string sortOrder Sorting order direction: 'ascending' or
[331] Fix | Delete
* 'descending'.
[332] Fix | Delete
* @return Google_Service_Dns_ChangesListResponse
[333] Fix | Delete
*/
[334] Fix | Delete
public function listChanges($project, $managedZone, $optParams = array())
[335] Fix | Delete
{
[336] Fix | Delete
$params = array('project' => $project, 'managedZone' => $managedZone);
[337] Fix | Delete
$params = array_merge($params, $optParams);
[338] Fix | Delete
return $this->call('list', array($params), "Google_Service_Dns_ChangesListResponse");
[339] Fix | Delete
}
[340] Fix | Delete
}
[341] Fix | Delete
[342] Fix | Delete
/**
[343] Fix | Delete
* The "managedZones" collection of methods.
[344] Fix | Delete
* Typical usage is:
[345] Fix | Delete
* <code>
[346] Fix | Delete
* $dnsService = new Google_Service_Dns(...);
[347] Fix | Delete
* $managedZones = $dnsService->managedZones;
[348] Fix | Delete
* </code>
[349] Fix | Delete
*/
[350] Fix | Delete
class Google_Service_Dns_ManagedZones_Resource extends UDP_Google_Service_Resource
[351] Fix | Delete
{
[352] Fix | Delete
[353] Fix | Delete
/**
[354] Fix | Delete
* Create a new ManagedZone. (managedZones.create)
[355] Fix | Delete
*
[356] Fix | Delete
* @param string $project Identifies the project addressed by this request.
[357] Fix | Delete
* @param Google_ManagedZone $postBody
[358] Fix | Delete
* @param array $optParams Optional parameters.
[359] Fix | Delete
* @return Google_Service_Dns_ManagedZone
[360] Fix | Delete
*/
[361] Fix | Delete
public function create($project, Google_Service_Dns_ManagedZone $postBody, $optParams = array())
[362] Fix | Delete
{
[363] Fix | Delete
$params = array('project' => $project, 'postBody' => $postBody);
[364] Fix | Delete
$params = array_merge($params, $optParams);
[365] Fix | Delete
return $this->call('create', array($params), "Google_Service_Dns_ManagedZone");
[366] Fix | Delete
}
[367] Fix | Delete
[368] Fix | Delete
/**
[369] Fix | Delete
* Delete a previously created ManagedZone. (managedZones.delete)
[370] Fix | Delete
*
[371] Fix | Delete
* @param string $project Identifies the project addressed by this request.
[372] Fix | Delete
* @param string $managedZone Identifies the managed zone addressed by this
[373] Fix | Delete
* request. Can be the managed zone name or id.
[374] Fix | Delete
* @param array $optParams Optional parameters.
[375] Fix | Delete
*/
[376] Fix | Delete
public function delete($project, $managedZone, $optParams = array())
[377] Fix | Delete
{
[378] Fix | Delete
$params = array('project' => $project, 'managedZone' => $managedZone);
[379] Fix | Delete
$params = array_merge($params, $optParams);
[380] Fix | Delete
return $this->call('delete', array($params));
[381] Fix | Delete
}
[382] Fix | Delete
[383] Fix | Delete
/**
[384] Fix | Delete
* Fetch the representation of an existing ManagedZone. (managedZones.get)
[385] Fix | Delete
*
[386] Fix | Delete
* @param string $project Identifies the project addressed by this request.
[387] Fix | Delete
* @param string $managedZone Identifies the managed zone addressed by this
[388] Fix | Delete
* request. Can be the managed zone name or id.
[389] Fix | Delete
* @param array $optParams Optional parameters.
[390] Fix | Delete
* @return Google_Service_Dns_ManagedZone
[391] Fix | Delete
*/
[392] Fix | Delete
public function get($project, $managedZone, $optParams = array())
[393] Fix | Delete
{
[394] Fix | Delete
$params = array('project' => $project, 'managedZone' => $managedZone);
[395] Fix | Delete
$params = array_merge($params, $optParams);
[396] Fix | Delete
return $this->call('get', array($params), "Google_Service_Dns_ManagedZone");
[397] Fix | Delete
}
[398] Fix | Delete
[399] Fix | Delete
/**
[400] Fix | Delete
* Enumerate ManagedZones that have been created but not yet deleted.
[401] Fix | Delete
* (managedZones.listManagedZones)
[402] Fix | Delete
*
[403] Fix | Delete
* @param string $project Identifies the project addressed by this request.
[404] Fix | Delete
* @param array $optParams Optional parameters.
[405] Fix | Delete
*
[406] Fix | Delete
* @opt_param string pageToken Optional. A tag returned by a previous list
[407] Fix | Delete
* request that was truncated. Use this parameter to continue a previous list
[408] Fix | Delete
* request.
[409] Fix | Delete
* @opt_param int maxResults Optional. Maximum number of results to be returned.
[410] Fix | Delete
* If unspecified, the server will decide how many results to return.
[411] Fix | Delete
* @return Google_Service_Dns_ManagedZonesListResponse
[412] Fix | Delete
*/
[413] Fix | Delete
public function listManagedZones($project, $optParams = array())
[414] Fix | Delete
{
[415] Fix | Delete
$params = array('project' => $project);
[416] Fix | Delete
$params = array_merge($params, $optParams);
[417] Fix | Delete
return $this->call('list', array($params), "Google_Service_Dns_ManagedZonesListResponse");
[418] Fix | Delete
}
[419] Fix | Delete
}
[420] Fix | Delete
[421] Fix | Delete
/**
[422] Fix | Delete
* The "projects" collection of methods.
[423] Fix | Delete
* Typical usage is:
[424] Fix | Delete
* <code>
[425] Fix | Delete
* $dnsService = new Google_Service_Dns(...);
[426] Fix | Delete
* $projects = $dnsService->projects;
[427] Fix | Delete
* </code>
[428] Fix | Delete
*/
[429] Fix | Delete
class Google_Service_Dns_Projects_Resource extends UDP_Google_Service_Resource
[430] Fix | Delete
{
[431] Fix | Delete
[432] Fix | Delete
/**
[433] Fix | Delete
* Fetch the representation of an existing Project. (projects.get)
[434] Fix | Delete
*
[435] Fix | Delete
* @param string $project Identifies the project addressed by this request.
[436] Fix | Delete
* @param array $optParams Optional parameters.
[437] Fix | Delete
* @return Google_Service_Dns_Project
[438] Fix | Delete
*/
[439] Fix | Delete
public function get($project, $optParams = array())
[440] Fix | Delete
{
[441] Fix | Delete
$params = array('project' => $project);
[442] Fix | Delete
$params = array_merge($params, $optParams);
[443] Fix | Delete
return $this->call('get', array($params), "Google_Service_Dns_Project");
[444] Fix | Delete
}
[445] Fix | Delete
}
[446] Fix | Delete
[447] Fix | Delete
/**
[448] Fix | Delete
* The "resourceRecordSets" collection of methods.
[449] Fix | Delete
* Typical usage is:
[450] Fix | Delete
* <code>
[451] Fix | Delete
* $dnsService = new Google_Service_Dns(...);
[452] Fix | Delete
* $resourceRecordSets = $dnsService->resourceRecordSets;
[453] Fix | Delete
* </code>
[454] Fix | Delete
*/
[455] Fix | Delete
class Google_Service_Dns_ResourceRecordSets_Resource extends UDP_Google_Service_Resource
[456] Fix | Delete
{
[457] Fix | Delete
[458] Fix | Delete
/**
[459] Fix | Delete
* Enumerate ResourceRecordSets that have been created but not yet deleted.
[460] Fix | Delete
* (resourceRecordSets.listResourceRecordSets)
[461] Fix | Delete
*
[462] Fix | Delete
* @param string $project Identifies the project addressed by this request.
[463] Fix | Delete
* @param string $managedZone Identifies the managed zone addressed by this
[464] Fix | Delete
* request. Can be the managed zone name or id.
[465] Fix | Delete
* @param array $optParams Optional parameters.
[466] Fix | Delete
*
[467] Fix | Delete
* @opt_param string name Restricts the list to return only records with this
[468] Fix | Delete
* fully qualified domain name.
[469] Fix | Delete
* @opt_param int maxResults Optional. Maximum number of results to be returned.
[470] Fix | Delete
* If unspecified, the server will decide how many results to return.
[471] Fix | Delete
* @opt_param string pageToken Optional. A tag returned by a previous list
[472] Fix | Delete
* request that was truncated. Use this parameter to continue a previous list
[473] Fix | Delete
* request.
[474] Fix | Delete
* @opt_param string type Restricts the list to return only records of this
[475] Fix | Delete
* type. If present, the "name" parameter must also be present.
[476] Fix | Delete
* @return Google_Service_Dns_ResourceRecordSetsListResponse
[477] Fix | Delete
*/
[478] Fix | Delete
public function listResourceRecordSets($project, $managedZone, $optParams = array())
[479] Fix | Delete
{
[480] Fix | Delete
$params = array('project' => $project, 'managedZone' => $managedZone);
[481] Fix | Delete
$params = array_merge($params, $optParams);
[482] Fix | Delete
return $this->call('list', array($params), "Google_Service_Dns_ResourceRecordSetsListResponse");
[483] Fix | Delete
}
[484] Fix | Delete
}
[485] Fix | Delete
[486] Fix | Delete
[487] Fix | Delete
[488] Fix | Delete
[489] Fix | Delete
class Google_Service_Dns_Change extends Google_Collection
[490] Fix | Delete
{
[491] Fix | Delete
protected $collection_key = 'deletions';
[492] Fix | Delete
protected $internal_gapi_mappings = array(
[493] Fix | Delete
);
[494] Fix | Delete
protected $additionsType = 'Google_Service_Dns_ResourceRecordSet';
[495] Fix | Delete
protected $additionsDataType = 'array';
[496] Fix | Delete
protected $deletionsType = 'Google_Service_Dns_ResourceRecordSet';
[497] Fix | Delete
protected $deletionsDataType = 'array';
[498] Fix | Delete
public $id;
[499] Fix | Delete
12
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function