Skip to content

Commit

Permalink
feat: [netapp] Enable Backup, Backup Vault, and Backup Policy (#10173)
Browse files Browse the repository at this point in the history
* feat: Enable Backup, Backup Vault, and Backup Policy
feat: Add singular and plural annotations
feat: Set field_behavior to IDENTIFIER on the "name" fields
docs: Comments are updated for several fields/enums
chore: Mark global_access_allowed as deprecated

PiperOrigin-RevId: 592685731

Source-Link: googleapis/googleapis@ac865cc

Source-Link: googleapis/googleapis-gen@3fbabf4
Copy-Tag: eyJwIjoiamF2YS1uZXRhcHAvLk93bEJvdC55YW1sIiwiaCI6IjNmYmFiZjQzNmViYjE3ZmE4NjdmNGYwOTliMTY1ZmZmZjdjMDY2ODQifQ==

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] committed Jan 2, 2024
1 parent 041bc40 commit 1e65292
Show file tree
Hide file tree
Showing 167 changed files with 47,733 additions and 662 deletions.
2 changes: 1 addition & 1 deletion java-netapp/README.md
Expand Up @@ -201,7 +201,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-netapp/java11.html
[stability-image]: https://img.shields.io/badge/stability-preview-yellow
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-netapp.svg
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-netapp/0.9.0
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-netapp/0.11.0
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles
Expand Down

Large diffs are not rendered by default.

Expand Up @@ -17,6 +17,9 @@
package com.google.cloud.netapp.v1;

import static com.google.cloud.netapp.v1.NetAppClient.ListActiveDirectoriesPagedResponse;
import static com.google.cloud.netapp.v1.NetAppClient.ListBackupPoliciesPagedResponse;
import static com.google.cloud.netapp.v1.NetAppClient.ListBackupVaultsPagedResponse;
import static com.google.cloud.netapp.v1.NetAppClient.ListBackupsPagedResponse;
import static com.google.cloud.netapp.v1.NetAppClient.ListKmsConfigsPagedResponse;
import static com.google.cloud.netapp.v1.NetAppClient.ListLocationsPagedResponse;
import static com.google.cloud.netapp.v1.NetAppClient.ListReplicationsPagedResponse;
Expand Down Expand Up @@ -423,6 +426,140 @@ public UnaryCallSettings<ResumeReplicationRequest, Operation> resumeReplicationS
return ((NetAppStubSettings) getStubSettings()).reverseReplicationDirectionOperationSettings();
}

/** Returns the object with the settings used for calls to createBackupVault. */
public UnaryCallSettings<CreateBackupVaultRequest, Operation> createBackupVaultSettings() {
return ((NetAppStubSettings) getStubSettings()).createBackupVaultSettings();
}

/** Returns the object with the settings used for calls to createBackupVault. */
public OperationCallSettings<CreateBackupVaultRequest, BackupVault, OperationMetadata>
createBackupVaultOperationSettings() {
return ((NetAppStubSettings) getStubSettings()).createBackupVaultOperationSettings();
}

/** Returns the object with the settings used for calls to getBackupVault. */
public UnaryCallSettings<GetBackupVaultRequest, BackupVault> getBackupVaultSettings() {
return ((NetAppStubSettings) getStubSettings()).getBackupVaultSettings();
}

/** Returns the object with the settings used for calls to listBackupVaults. */
public PagedCallSettings<
ListBackupVaultsRequest, ListBackupVaultsResponse, ListBackupVaultsPagedResponse>
listBackupVaultsSettings() {
return ((NetAppStubSettings) getStubSettings()).listBackupVaultsSettings();
}

/** Returns the object with the settings used for calls to updateBackupVault. */
public UnaryCallSettings<UpdateBackupVaultRequest, Operation> updateBackupVaultSettings() {
return ((NetAppStubSettings) getStubSettings()).updateBackupVaultSettings();
}

/** Returns the object with the settings used for calls to updateBackupVault. */
public OperationCallSettings<UpdateBackupVaultRequest, BackupVault, OperationMetadata>
updateBackupVaultOperationSettings() {
return ((NetAppStubSettings) getStubSettings()).updateBackupVaultOperationSettings();
}

/** Returns the object with the settings used for calls to deleteBackupVault. */
public UnaryCallSettings<DeleteBackupVaultRequest, Operation> deleteBackupVaultSettings() {
return ((NetAppStubSettings) getStubSettings()).deleteBackupVaultSettings();
}

/** Returns the object with the settings used for calls to deleteBackupVault. */
public OperationCallSettings<DeleteBackupVaultRequest, Empty, OperationMetadata>
deleteBackupVaultOperationSettings() {
return ((NetAppStubSettings) getStubSettings()).deleteBackupVaultOperationSettings();
}

/** Returns the object with the settings used for calls to createBackup. */
public UnaryCallSettings<CreateBackupRequest, Operation> createBackupSettings() {
return ((NetAppStubSettings) getStubSettings()).createBackupSettings();
}

/** Returns the object with the settings used for calls to createBackup. */
public OperationCallSettings<CreateBackupRequest, Backup, OperationMetadata>
createBackupOperationSettings() {
return ((NetAppStubSettings) getStubSettings()).createBackupOperationSettings();
}

/** Returns the object with the settings used for calls to getBackup. */
public UnaryCallSettings<GetBackupRequest, Backup> getBackupSettings() {
return ((NetAppStubSettings) getStubSettings()).getBackupSettings();
}

/** Returns the object with the settings used for calls to listBackups. */
public PagedCallSettings<ListBackupsRequest, ListBackupsResponse, ListBackupsPagedResponse>
listBackupsSettings() {
return ((NetAppStubSettings) getStubSettings()).listBackupsSettings();
}

/** Returns the object with the settings used for calls to deleteBackup. */
public UnaryCallSettings<DeleteBackupRequest, Operation> deleteBackupSettings() {
return ((NetAppStubSettings) getStubSettings()).deleteBackupSettings();
}

/** Returns the object with the settings used for calls to deleteBackup. */
public OperationCallSettings<DeleteBackupRequest, Empty, OperationMetadata>
deleteBackupOperationSettings() {
return ((NetAppStubSettings) getStubSettings()).deleteBackupOperationSettings();
}

/** Returns the object with the settings used for calls to updateBackup. */
public UnaryCallSettings<UpdateBackupRequest, Operation> updateBackupSettings() {
return ((NetAppStubSettings) getStubSettings()).updateBackupSettings();
}

/** Returns the object with the settings used for calls to updateBackup. */
public OperationCallSettings<UpdateBackupRequest, Backup, OperationMetadata>
updateBackupOperationSettings() {
return ((NetAppStubSettings) getStubSettings()).updateBackupOperationSettings();
}

/** Returns the object with the settings used for calls to createBackupPolicy. */
public UnaryCallSettings<CreateBackupPolicyRequest, Operation> createBackupPolicySettings() {
return ((NetAppStubSettings) getStubSettings()).createBackupPolicySettings();
}

/** Returns the object with the settings used for calls to createBackupPolicy. */
public OperationCallSettings<CreateBackupPolicyRequest, BackupPolicy, OperationMetadata>
createBackupPolicyOperationSettings() {
return ((NetAppStubSettings) getStubSettings()).createBackupPolicyOperationSettings();
}

/** Returns the object with the settings used for calls to getBackupPolicy. */
public UnaryCallSettings<GetBackupPolicyRequest, BackupPolicy> getBackupPolicySettings() {
return ((NetAppStubSettings) getStubSettings()).getBackupPolicySettings();
}

/** Returns the object with the settings used for calls to listBackupPolicies. */
public PagedCallSettings<
ListBackupPoliciesRequest, ListBackupPoliciesResponse, ListBackupPoliciesPagedResponse>
listBackupPoliciesSettings() {
return ((NetAppStubSettings) getStubSettings()).listBackupPoliciesSettings();
}

/** Returns the object with the settings used for calls to updateBackupPolicy. */
public UnaryCallSettings<UpdateBackupPolicyRequest, Operation> updateBackupPolicySettings() {
return ((NetAppStubSettings) getStubSettings()).updateBackupPolicySettings();
}

/** Returns the object with the settings used for calls to updateBackupPolicy. */
public OperationCallSettings<UpdateBackupPolicyRequest, BackupPolicy, OperationMetadata>
updateBackupPolicyOperationSettings() {
return ((NetAppStubSettings) getStubSettings()).updateBackupPolicyOperationSettings();
}

/** Returns the object with the settings used for calls to deleteBackupPolicy. */
public UnaryCallSettings<DeleteBackupPolicyRequest, Operation> deleteBackupPolicySettings() {
return ((NetAppStubSettings) getStubSettings()).deleteBackupPolicySettings();
}

/** Returns the object with the settings used for calls to deleteBackupPolicy. */
public OperationCallSettings<DeleteBackupPolicyRequest, Empty, OperationMetadata>
deleteBackupPolicyOperationSettings() {
return ((NetAppStubSettings) getStubSettings()).deleteBackupPolicyOperationSettings();
}

/** Returns the object with the settings used for calls to listLocations. */
public PagedCallSettings<ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>
listLocationsSettings() {
Expand Down Expand Up @@ -896,6 +1033,148 @@ public UnaryCallSettings.Builder<StopReplicationRequest, Operation> stopReplicat
return getStubSettingsBuilder().reverseReplicationDirectionOperationSettings();
}

/** Returns the builder for the settings used for calls to createBackupVault. */
public UnaryCallSettings.Builder<CreateBackupVaultRequest, Operation>
createBackupVaultSettings() {
return getStubSettingsBuilder().createBackupVaultSettings();
}

/** Returns the builder for the settings used for calls to createBackupVault. */
public OperationCallSettings.Builder<CreateBackupVaultRequest, BackupVault, OperationMetadata>
createBackupVaultOperationSettings() {
return getStubSettingsBuilder().createBackupVaultOperationSettings();
}

/** Returns the builder for the settings used for calls to getBackupVault. */
public UnaryCallSettings.Builder<GetBackupVaultRequest, BackupVault> getBackupVaultSettings() {
return getStubSettingsBuilder().getBackupVaultSettings();
}

/** Returns the builder for the settings used for calls to listBackupVaults. */
public PagedCallSettings.Builder<
ListBackupVaultsRequest, ListBackupVaultsResponse, ListBackupVaultsPagedResponse>
listBackupVaultsSettings() {
return getStubSettingsBuilder().listBackupVaultsSettings();
}

/** Returns the builder for the settings used for calls to updateBackupVault. */
public UnaryCallSettings.Builder<UpdateBackupVaultRequest, Operation>
updateBackupVaultSettings() {
return getStubSettingsBuilder().updateBackupVaultSettings();
}

/** Returns the builder for the settings used for calls to updateBackupVault. */
public OperationCallSettings.Builder<UpdateBackupVaultRequest, BackupVault, OperationMetadata>
updateBackupVaultOperationSettings() {
return getStubSettingsBuilder().updateBackupVaultOperationSettings();
}

/** Returns the builder for the settings used for calls to deleteBackupVault. */
public UnaryCallSettings.Builder<DeleteBackupVaultRequest, Operation>
deleteBackupVaultSettings() {
return getStubSettingsBuilder().deleteBackupVaultSettings();
}

/** Returns the builder for the settings used for calls to deleteBackupVault. */
public OperationCallSettings.Builder<DeleteBackupVaultRequest, Empty, OperationMetadata>
deleteBackupVaultOperationSettings() {
return getStubSettingsBuilder().deleteBackupVaultOperationSettings();
}

/** Returns the builder for the settings used for calls to createBackup. */
public UnaryCallSettings.Builder<CreateBackupRequest, Operation> createBackupSettings() {
return getStubSettingsBuilder().createBackupSettings();
}

/** Returns the builder for the settings used for calls to createBackup. */
public OperationCallSettings.Builder<CreateBackupRequest, Backup, OperationMetadata>
createBackupOperationSettings() {
return getStubSettingsBuilder().createBackupOperationSettings();
}

/** Returns the builder for the settings used for calls to getBackup. */
public UnaryCallSettings.Builder<GetBackupRequest, Backup> getBackupSettings() {
return getStubSettingsBuilder().getBackupSettings();
}

/** Returns the builder for the settings used for calls to listBackups. */
public PagedCallSettings.Builder<
ListBackupsRequest, ListBackupsResponse, ListBackupsPagedResponse>
listBackupsSettings() {
return getStubSettingsBuilder().listBackupsSettings();
}

/** Returns the builder for the settings used for calls to deleteBackup. */
public UnaryCallSettings.Builder<DeleteBackupRequest, Operation> deleteBackupSettings() {
return getStubSettingsBuilder().deleteBackupSettings();
}

/** Returns the builder for the settings used for calls to deleteBackup. */
public OperationCallSettings.Builder<DeleteBackupRequest, Empty, OperationMetadata>
deleteBackupOperationSettings() {
return getStubSettingsBuilder().deleteBackupOperationSettings();
}

/** Returns the builder for the settings used for calls to updateBackup. */
public UnaryCallSettings.Builder<UpdateBackupRequest, Operation> updateBackupSettings() {
return getStubSettingsBuilder().updateBackupSettings();
}

/** Returns the builder for the settings used for calls to updateBackup. */
public OperationCallSettings.Builder<UpdateBackupRequest, Backup, OperationMetadata>
updateBackupOperationSettings() {
return getStubSettingsBuilder().updateBackupOperationSettings();
}

/** Returns the builder for the settings used for calls to createBackupPolicy. */
public UnaryCallSettings.Builder<CreateBackupPolicyRequest, Operation>
createBackupPolicySettings() {
return getStubSettingsBuilder().createBackupPolicySettings();
}

/** Returns the builder for the settings used for calls to createBackupPolicy. */
public OperationCallSettings.Builder<CreateBackupPolicyRequest, BackupPolicy, OperationMetadata>
createBackupPolicyOperationSettings() {
return getStubSettingsBuilder().createBackupPolicyOperationSettings();
}

/** Returns the builder for the settings used for calls to getBackupPolicy. */
public UnaryCallSettings.Builder<GetBackupPolicyRequest, BackupPolicy>
getBackupPolicySettings() {
return getStubSettingsBuilder().getBackupPolicySettings();
}

/** Returns the builder for the settings used for calls to listBackupPolicies. */
public PagedCallSettings.Builder<
ListBackupPoliciesRequest, ListBackupPoliciesResponse, ListBackupPoliciesPagedResponse>
listBackupPoliciesSettings() {
return getStubSettingsBuilder().listBackupPoliciesSettings();
}

/** Returns the builder for the settings used for calls to updateBackupPolicy. */
public UnaryCallSettings.Builder<UpdateBackupPolicyRequest, Operation>
updateBackupPolicySettings() {
return getStubSettingsBuilder().updateBackupPolicySettings();
}

/** Returns the builder for the settings used for calls to updateBackupPolicy. */
public OperationCallSettings.Builder<UpdateBackupPolicyRequest, BackupPolicy, OperationMetadata>
updateBackupPolicyOperationSettings() {
return getStubSettingsBuilder().updateBackupPolicyOperationSettings();
}

/** Returns the builder for the settings used for calls to deleteBackupPolicy. */
public UnaryCallSettings.Builder<DeleteBackupPolicyRequest, Operation>
deleteBackupPolicySettings() {
return getStubSettingsBuilder().deleteBackupPolicySettings();
}

/** Returns the builder for the settings used for calls to deleteBackupPolicy. */
public OperationCallSettings.Builder<DeleteBackupPolicyRequest, Empty, OperationMetadata>
deleteBackupPolicyOperationSettings() {
return getStubSettingsBuilder().deleteBackupPolicyOperationSettings();
}

/** Returns the builder for the settings used for calls to listLocations. */
public PagedCallSettings.Builder<
ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>
Expand Down

0 comments on commit 1e65292

Please sign in to comment.