com.pulumi.googlenative.managedidentities.v1beta1.BackupArgs Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.googlenative.managedidentities.v1beta1;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class BackupArgs extends com.pulumi.resources.ResourceArgs {
public static final BackupArgs Empty = new BackupArgs();
/**
* Required. Backup Id, unique name to identify the backups with the following restrictions: * Must be lowercase letters, numbers, and hyphens * Must start with a letter. * Must contain between 1-63 characters. * Must end with a number or a letter. * Must be unique within the domain.
*
*/
@Import(name="backupId", required=true)
private Output backupId;
/**
* @return Required. Backup Id, unique name to identify the backups with the following restrictions: * Must be lowercase letters, numbers, and hyphens * Must start with a letter. * Must contain between 1-63 characters. * Must end with a number or a letter. * Must be unique within the domain.
*
*/
public Output backupId() {
return this.backupId;
}
/**
* Optional. A short description of the backup.
*
*/
@Import(name="description")
private @Nullable Output description;
/**
* @return Optional. A short description of the backup.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy