Skip to content

Commit

Permalink
🦉 Updates from OwlBot post-processor
Browse files Browse the repository at this point in the history
  • Loading branch information
gcf-owl-bot[bot] committed Jul 30, 2024
1 parent f0fc628 commit b43a365
Show file tree
Hide file tree
Showing 203 changed files with 505 additions and 34,250 deletions.
Binary file modified NetApp/metadata/V1/ActiveDirectory.php
Binary file not shown.
Binary file modified NetApp/metadata/V1/StoragePool.php
Binary file not shown.
Binary file modified NetApp/metadata/V1/Volume.php
Binary file not shown.
5 changes: 4 additions & 1 deletion NetApp/samples/V1/NetAppClient/create_active_directory.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@
* @param string $activeDirectoryNetBiosPrefix NetBIOSPrefix is used as a prefix for SMB server name.
* @param string $activeDirectoryUsername Username of the Active Directory domain administrator.
* @param string $activeDirectoryPassword Password of the Active Directory domain administrator.
* @param string $activeDirectoryId ID of the active directory to create.
* @param string $activeDirectoryId ID of the active directory to create. Must be unique within the
* parent resource. Must contain only letters, numbers, underscore and hyphen,
* with the first character a letter or underscore, the last a letter or
* underscore or a number, and a 63 character maximum.
*/
function create_active_directory_sample(
string $formattedParent,
Expand Down
7 changes: 3 additions & 4 deletions NetApp/samples/V1/NetAppClient/create_backup.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,9 @@
* Please see {@see NetAppClient::backupVaultName()} for help formatting this field.
* @param string $backupId The ID to use for the backup.
* The ID must be unique within the specified backupVault.
* This value must start with a lowercase letter followed by up to 62
* lowercase letters, numbers, or hyphens, and cannot end with a hyphen.
* Values that do not match this pattern will trigger an INVALID_ARGUMENT
* error.
* Must contain only letters, numbers, underscore and hyphen, with the first
* character a letter or underscore, the last a letter or underscore or a
* number, and a 63 character maximum.
*/
function create_backup_sample(string $formattedParent, string $backupId): void
{
Expand Down
5 changes: 3 additions & 2 deletions NetApp/samples/V1/NetAppClient/create_backup_policy.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@
* Please see {@see NetAppClient::locationName()} for help formatting this field.
* @param string $backupPolicyId The ID to use for the backup policy.
* The ID must be unique within the specified location.
* This value must start with a lowercase letter followed by up to 62
* lowercase letters, numbers, or hyphens, and cannot end with a hyphen.
* Must contain only letters, numbers, underscore and hyphen, with the first
* character a letter or underscore, the last a letter or underscore or a
* number, and a 63 character maximum.
*/
function create_backup_policy_sample(string $formattedParent, string $backupPolicyId): void
{
Expand Down
8 changes: 3 additions & 5 deletions NetApp/samples/V1/NetAppClient/create_backup_vault.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,9 @@
* Please see {@see NetAppClient::locationName()} for help formatting this field.
* @param string $backupVaultId The ID to use for the backupVault.
* The ID must be unique within the specified location.
* The max supported length is 63 characters.
* This value must start with a lowercase letter followed by up to 62
* lowercase letters, numbers, or hyphens, and cannot end with a hyphen.
* Values that do not match this pattern will trigger an INVALID_ARGUMENT
* error.
* Must contain only letters, numbers, underscore and hyphen, with the first
* character a letter or underscore, the last a letter or underscore or a
* number, and a 63 character maximum.
*/
function create_backup_vault_sample(string $formattedParent, string $backupVaultId): void
{
Expand Down
7 changes: 4 additions & 3 deletions NetApp/samples/V1/NetAppClient/create_kms_config.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@
*
* @param string $formattedParent Value for parent. Please see
* {@see NetAppClient::locationName()} for help formatting this field.
* @param string $kmsConfigId Id of the requesting KmsConfig
* If auto-generating Id server-side, remove this field and
* id from the method_signature of Create RPC
* @param string $kmsConfigId Id of the requesting KmsConfig. Must be unique within the parent
* resource. Must contain only letters, numbers, underscore and hyphen, with
* the first character a letter or underscore, the last a letter or underscore
* or a number, and a 63 character maximum.
* @param string $kmsConfigCryptoKeyName Customer managed crypto key resource full name. Format:
* projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{key}.
*/
Expand Down
7 changes: 4 additions & 3 deletions NetApp/samples/V1/NetAppClient/create_replication.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@
* @param int $replicationReplicationSchedule Indicates the schedule for replication.
* @param string $formattedReplicationDestinationVolumeParametersStoragePool Existing destination StoragePool name. Please see
* {@see NetAppClient::storagePoolName()} for help formatting this field.
* @param string $replicationId ID of the replication to create.
* This value must start with a lowercase letter followed by up to 62
* lowercase letters, numbers, or hyphens, and cannot end with a hyphen.
* @param string $replicationId ID of the replication to create. Must be unique within the parent
* resource. Must contain only letters, numbers, underscore and hyphen, with
* the first character a letter or underscore, the last a letter or underscore
* or a number, and a 63 character maximum.
*/
function create_replication_sample(
string $formattedParent,
Expand Down
7 changes: 4 additions & 3 deletions NetApp/samples/V1/NetAppClient/create_snapshot.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@
* @param string $formattedParent The NetApp volume to create the snapshots of, in the format
* `projects/{project_id}/locations/{location}/volumes/{volume_id}`
* Please see {@see NetAppClient::volumeName()} for help formatting this field.
* @param string $snapshotId ID of the snapshot to create.
* This value must start with a lowercase letter followed by up to 62
* lowercase letters, numbers, or hyphens, and cannot end with a hyphen.
* @param string $snapshotId ID of the snapshot to create. Must be unique within the parent
* resource. Must contain only letters, numbers, underscore and hyphen, with
* the first character a letter or underscore, the last a letter or underscore
* or a number, and a 63 character maximum.
*/
function create_snapshot_sample(string $formattedParent, string $snapshotId): void
{
Expand Down
7 changes: 4 additions & 3 deletions NetApp/samples/V1/NetAppClient/create_storage_pool.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@
*
* @param string $formattedParent Value for parent. Please see
* {@see NetAppClient::locationName()} for help formatting this field.
* @param string $storagePoolId Id of the requesting storage pool
* If auto-generating Id server-side, remove this field and
* id from the method_signature of Create RPC
* @param string $storagePoolId Id of the requesting storage pool. Must be unique within the
* parent resource. Must contain only letters, numbers, underscore and hyphen,
* with the first character a letter or underscore, the last a letter or
* underscore or a number, and a 63 character maximum.
* @param int $storagePoolServiceLevel Service level of the storage pool
* @param int $storagePoolCapacityGib Capacity in GIB of the pool
* @param string $formattedStoragePoolNetwork VPC Network name.
Expand Down
7 changes: 4 additions & 3 deletions NetApp/samples/V1/NetAppClient/create_volume.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@
*
* @param string $formattedParent Value for parent. Please see
* {@see NetAppClient::locationName()} for help formatting this field.
* @param string $volumeId Id of the requesting volume
* If auto-generating Id server-side, remove this field and
* Id from the method_signature of Create RPC
* @param string $volumeId Id of the requesting volume. Must be unique within the parent
* resource. Must contain only letters, numbers, underscore and hyphen, with
* the first character a letter or underscore, the last a letter or underscore
* or a number, and a 63 character maximum.
* @param string $volumeShareName Share name of the volume
* @param string $formattedVolumeStoragePool StoragePool name of the volume
* Please see {@see NetAppClient::storagePoolName()} for help formatting this field.
Expand Down
34 changes: 34 additions & 0 deletions NetApp/src/V1/ActiveDirectory.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 20 additions & 5 deletions NetApp/src/V1/CreateActiveDirectoryRequest.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 15 additions & 10 deletions NetApp/src/V1/CreateBackupPolicyRequest.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b43a365

Please sign in to comment.