-
Notifications
You must be signed in to change notification settings - Fork 439
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Enable creation of Onprem Migration in CreateVolume (#7850)
feat: Add EstablishPeering API for Onprem Migration feat: Add Sync API for Replications feat: Add new Active Directory state for AD Diagnostics support docs: Docs now do not allow underscore in IDs of various Resources PiperOrigin-RevId: 699033921 Source-Link: googleapis/googleapis@005b0fd Source-Link: googleapis/googleapis-gen@a47d42c Copy-Tag: eyJwIjoiTmV0QXBwLy5Pd2xCb3QueWFtbCIsImgiOiJhNDdkNDJjZWU0YTk2ZDg0YzBmOWQ4MzE3ZmM1MWVhYTVkYmVkNGFmIn0=
- Loading branch information
1 parent
6241281
commit f94629d
Showing
42 changed files
with
1,911 additions
and
147 deletions.
There are no files selected for viewing
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
<?php | ||
/* | ||
* Copyright 2024 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/* | ||
* GENERATED CODE WARNING | ||
* This file was automatically generated - do not edit! | ||
*/ | ||
|
||
require_once __DIR__ . '/../../../vendor/autoload.php'; | ||
|
||
// [START netapp_v1_generated_NetApp_EstablishPeering_sync] | ||
use Google\ApiCore\ApiException; | ||
use Google\ApiCore\OperationResponse; | ||
use Google\Cloud\NetApp\V1\Client\NetAppClient; | ||
use Google\Cloud\NetApp\V1\EstablishPeeringRequest; | ||
use Google\Cloud\NetApp\V1\Replication; | ||
use Google\Rpc\Status; | ||
|
||
/** | ||
* Establish replication peering. | ||
* | ||
* @param string $formattedName The resource name of the replication, in the format of | ||
* projects/{project_id}/locations/{location}/volumes/{volume_id}/replications/{replication_id}. Please see | ||
* {@see NetAppClient::replicationName()} for help formatting this field. | ||
* @param string $peerClusterName Name of the user's local source cluster to be peered with the | ||
* destination cluster. | ||
* @param string $peerSvmName Name of the user's local source vserver svm to be peered with the | ||
* destination vserver svm. | ||
* @param string $peerVolumeName Name of the user's local source volume to be peered with the | ||
* destination volume. | ||
*/ | ||
function establish_peering_sample( | ||
string $formattedName, | ||
string $peerClusterName, | ||
string $peerSvmName, | ||
string $peerVolumeName | ||
): void { | ||
// Create a client. | ||
$netAppClient = new NetAppClient(); | ||
|
||
// Prepare the request message. | ||
$request = (new EstablishPeeringRequest()) | ||
->setName($formattedName) | ||
->setPeerClusterName($peerClusterName) | ||
->setPeerSvmName($peerSvmName) | ||
->setPeerVolumeName($peerVolumeName); | ||
|
||
// Call the API and handle any network failures. | ||
try { | ||
/** @var OperationResponse $response */ | ||
$response = $netAppClient->establishPeering($request); | ||
$response->pollUntilComplete(); | ||
|
||
if ($response->operationSucceeded()) { | ||
/** @var Replication $result */ | ||
$result = $response->getResult(); | ||
printf('Operation successful with response data: %s' . PHP_EOL, $result->serializeToJsonString()); | ||
} else { | ||
/** @var Status $error */ | ||
$error = $response->getError(); | ||
printf('Operation failed with error data: %s' . PHP_EOL, $error->serializeToJsonString()); | ||
} | ||
} catch (ApiException $ex) { | ||
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage()); | ||
} | ||
} | ||
|
||
/** | ||
* Helper to execute the sample. | ||
* | ||
* This sample has been automatically generated and should be regarded as a code | ||
* template only. It will require modifications to work: | ||
* - It may require correct/in-range values for request initialization. | ||
* - It may require specifying regional endpoints when creating the service client, | ||
* please see the apiEndpoint client configuration option for more details. | ||
*/ | ||
function callSample(): void | ||
{ | ||
$formattedName = NetAppClient::replicationName( | ||
'[PROJECT]', | ||
'[LOCATION]', | ||
'[VOLUME]', | ||
'[REPLICATION]' | ||
); | ||
$peerClusterName = '[PEER_CLUSTER_NAME]'; | ||
$peerSvmName = '[PEER_SVM_NAME]'; | ||
$peerVolumeName = '[PEER_VOLUME_NAME]'; | ||
|
||
establish_peering_sample($formattedName, $peerClusterName, $peerSvmName, $peerVolumeName); | ||
} | ||
// [END netapp_v1_generated_NetApp_EstablishPeering_sync] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
<?php | ||
/* | ||
* Copyright 2024 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/* | ||
* GENERATED CODE WARNING | ||
* This file was automatically generated - do not edit! | ||
*/ | ||
|
||
require_once __DIR__ . '/../../../vendor/autoload.php'; | ||
|
||
// [START netapp_v1_generated_NetApp_SyncReplication_sync] | ||
use Google\ApiCore\ApiException; | ||
use Google\ApiCore\OperationResponse; | ||
use Google\Cloud\NetApp\V1\Client\NetAppClient; | ||
use Google\Cloud\NetApp\V1\Replication; | ||
use Google\Cloud\NetApp\V1\SyncReplicationRequest; | ||
use Google\Rpc\Status; | ||
|
||
/** | ||
* Syncs the replication. This will invoke one time volume data transfer from | ||
* source to destination. | ||
* | ||
* @param string $formattedName The resource name of the replication, in the format of | ||
* projects/{project_id}/locations/{location}/volumes/{volume_id}/replications/{replication_id}. Please see | ||
* {@see NetAppClient::replicationName()} for help formatting this field. | ||
*/ | ||
function sync_replication_sample(string $formattedName): void | ||
{ | ||
// Create a client. | ||
$netAppClient = new NetAppClient(); | ||
|
||
// Prepare the request message. | ||
$request = (new SyncReplicationRequest()) | ||
->setName($formattedName); | ||
|
||
// Call the API and handle any network failures. | ||
try { | ||
/** @var OperationResponse $response */ | ||
$response = $netAppClient->syncReplication($request); | ||
$response->pollUntilComplete(); | ||
|
||
if ($response->operationSucceeded()) { | ||
/** @var Replication $result */ | ||
$result = $response->getResult(); | ||
printf('Operation successful with response data: %s' . PHP_EOL, $result->serializeToJsonString()); | ||
} else { | ||
/** @var Status $error */ | ||
$error = $response->getError(); | ||
printf('Operation failed with error data: %s' . PHP_EOL, $error->serializeToJsonString()); | ||
} | ||
} catch (ApiException $ex) { | ||
printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage()); | ||
} | ||
} | ||
|
||
/** | ||
* Helper to execute the sample. | ||
* | ||
* This sample has been automatically generated and should be regarded as a code | ||
* template only. It will require modifications to work: | ||
* - It may require correct/in-range values for request initialization. | ||
* - It may require specifying regional endpoints when creating the service client, | ||
* please see the apiEndpoint client configuration option for more details. | ||
*/ | ||
function callSample(): void | ||
{ | ||
$formattedName = NetAppClient::replicationName( | ||
'[PROJECT]', | ||
'[LOCATION]', | ||
'[VOLUME]', | ||
'[REPLICATION]' | ||
); | ||
|
||
sync_replication_sample($formattedName); | ||
} | ||
// [END netapp_v1_generated_NetApp_SyncReplication_sync] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.