Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.sqladmin/v1.BackupRun
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a new backup run on demand. Auto-naming is currently not supported for this resource.
Create BackupRun Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BackupRun(name: string, args: BackupRunArgs, opts?: CustomResourceOptions);@overload
def BackupRun(resource_name: str,
              args: BackupRunArgs,
              opts: Optional[ResourceOptions] = None)
@overload
def BackupRun(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              instance: Optional[str] = None,
              end_time: Optional[str] = None,
              location: Optional[str] = None,
              disk_encryption_status: Optional[DiskEncryptionStatusArgs] = None,
              backup_kind: Optional[BackupRunBackupKind] = None,
              enqueued_time: Optional[str] = None,
              error: Optional[OperationErrorArgs] = None,
              disk_encryption_configuration: Optional[DiskEncryptionConfigurationArgs] = None,
              id: Optional[str] = None,
              kind: Optional[str] = None,
              description: Optional[str] = None,
              project: Optional[str] = None,
              self_link: Optional[str] = None,
              start_time: Optional[str] = None,
              time_zone: Optional[str] = None,
              type: Optional[BackupRunType] = None,
              window_start_time: Optional[str] = None)func NewBackupRun(ctx *Context, name string, args BackupRunArgs, opts ...ResourceOption) (*BackupRun, error)public BackupRun(string name, BackupRunArgs args, CustomResourceOptions? opts = null)
public BackupRun(String name, BackupRunArgs args)
public BackupRun(String name, BackupRunArgs args, CustomResourceOptions options)
type: google-native:sqladmin/v1:BackupRun
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args BackupRunArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args BackupRunArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args BackupRunArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BackupRunArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BackupRunArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var backupRunResource = new GoogleNative.SQLAdmin.V1.BackupRun("backupRunResource", new()
{
    Instance = "string",
    EndTime = "string",
    Location = "string",
    DiskEncryptionStatus = new GoogleNative.SQLAdmin.V1.Inputs.DiskEncryptionStatusArgs
    {
        Kind = "string",
        KmsKeyVersionName = "string",
    },
    BackupKind = GoogleNative.SQLAdmin.V1.BackupRunBackupKind.SqlBackupKindUnspecified,
    EnqueuedTime = "string",
    Error = new GoogleNative.SQLAdmin.V1.Inputs.OperationErrorArgs
    {
        Code = "string",
        Kind = "string",
        Message = "string",
    },
    DiskEncryptionConfiguration = new GoogleNative.SQLAdmin.V1.Inputs.DiskEncryptionConfigurationArgs
    {
        Kind = "string",
        KmsKeyName = "string",
    },
    Id = "string",
    Kind = "string",
    Description = "string",
    Project = "string",
    SelfLink = "string",
    StartTime = "string",
    TimeZone = "string",
    Type = GoogleNative.SQLAdmin.V1.BackupRunType.SqlBackupRunTypeUnspecified,
    WindowStartTime = "string",
});
example, err := sqladmin.NewBackupRun(ctx, "backupRunResource", &sqladmin.BackupRunArgs{
	Instance: pulumi.String("string"),
	EndTime:  pulumi.String("string"),
	Location: pulumi.String("string"),
	DiskEncryptionStatus: &sqladmin.DiskEncryptionStatusArgs{
		Kind:              pulumi.String("string"),
		KmsKeyVersionName: pulumi.String("string"),
	},
	BackupKind:   sqladmin.BackupRunBackupKindSqlBackupKindUnspecified,
	EnqueuedTime: pulumi.String("string"),
	Error: &sqladmin.OperationErrorArgs{
		Code:    pulumi.String("string"),
		Kind:    pulumi.String("string"),
		Message: pulumi.String("string"),
	},
	DiskEncryptionConfiguration: &sqladmin.DiskEncryptionConfigurationArgs{
		Kind:       pulumi.String("string"),
		KmsKeyName: pulumi.String("string"),
	},
	Id:              pulumi.String("string"),
	Kind:            pulumi.String("string"),
	Description:     pulumi.String("string"),
	Project:         pulumi.String("string"),
	SelfLink:        pulumi.String("string"),
	StartTime:       pulumi.String("string"),
	TimeZone:        pulumi.String("string"),
	Type:            sqladmin.BackupRunTypeSqlBackupRunTypeUnspecified,
	WindowStartTime: pulumi.String("string"),
})
var backupRunResource = new BackupRun("backupRunResource", BackupRunArgs.builder()
    .instance("string")
    .endTime("string")
    .location("string")
    .diskEncryptionStatus(DiskEncryptionStatusArgs.builder()
        .kind("string")
        .kmsKeyVersionName("string")
        .build())
    .backupKind("SQL_BACKUP_KIND_UNSPECIFIED")
    .enqueuedTime("string")
    .error(OperationErrorArgs.builder()
        .code("string")
        .kind("string")
        .message("string")
        .build())
    .diskEncryptionConfiguration(DiskEncryptionConfigurationArgs.builder()
        .kind("string")
        .kmsKeyName("string")
        .build())
    .id("string")
    .kind("string")
    .description("string")
    .project("string")
    .selfLink("string")
    .startTime("string")
    .timeZone("string")
    .type("SQL_BACKUP_RUN_TYPE_UNSPECIFIED")
    .windowStartTime("string")
    .build());
backup_run_resource = google_native.sqladmin.v1.BackupRun("backupRunResource",
    instance="string",
    end_time="string",
    location="string",
    disk_encryption_status={
        "kind": "string",
        "kms_key_version_name": "string",
    },
    backup_kind=google_native.sqladmin.v1.BackupRunBackupKind.SQL_BACKUP_KIND_UNSPECIFIED,
    enqueued_time="string",
    error={
        "code": "string",
        "kind": "string",
        "message": "string",
    },
    disk_encryption_configuration={
        "kind": "string",
        "kms_key_name": "string",
    },
    id="string",
    kind="string",
    description="string",
    project="string",
    self_link="string",
    start_time="string",
    time_zone="string",
    type=google_native.sqladmin.v1.BackupRunType.SQL_BACKUP_RUN_TYPE_UNSPECIFIED,
    window_start_time="string")
const backupRunResource = new google_native.sqladmin.v1.BackupRun("backupRunResource", {
    instance: "string",
    endTime: "string",
    location: "string",
    diskEncryptionStatus: {
        kind: "string",
        kmsKeyVersionName: "string",
    },
    backupKind: google_native.sqladmin.v1.BackupRunBackupKind.SqlBackupKindUnspecified,
    enqueuedTime: "string",
    error: {
        code: "string",
        kind: "string",
        message: "string",
    },
    diskEncryptionConfiguration: {
        kind: "string",
        kmsKeyName: "string",
    },
    id: "string",
    kind: "string",
    description: "string",
    project: "string",
    selfLink: "string",
    startTime: "string",
    timeZone: "string",
    type: google_native.sqladmin.v1.BackupRunType.SqlBackupRunTypeUnspecified,
    windowStartTime: "string",
});
type: google-native:sqladmin/v1:BackupRun
properties:
    backupKind: SQL_BACKUP_KIND_UNSPECIFIED
    description: string
    diskEncryptionConfiguration:
        kind: string
        kmsKeyName: string
    diskEncryptionStatus:
        kind: string
        kmsKeyVersionName: string
    endTime: string
    enqueuedTime: string
    error:
        code: string
        kind: string
        message: string
    id: string
    instance: string
    kind: string
    location: string
    project: string
    selfLink: string
    startTime: string
    timeZone: string
    type: SQL_BACKUP_RUN_TYPE_UNSPECIFIED
    windowStartTime: string
BackupRun Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The BackupRun resource accepts the following input properties:
- Instance string
- Name of the database instance.
- BackupKind Pulumi.Google Native. SQLAdmin. V1. Backup Run Backup Kind 
- Specifies the kind of backup, PHYSICAL or DEFAULT_SNAPSHOT.
- Description string
- The description of this run, only applicable to on-demand backups.
- DiskEncryption Pulumi.Configuration Google Native. SQLAdmin. V1. Inputs. Disk Encryption Configuration 
- Encryption configuration specific to a backup.
- DiskEncryption Pulumi.Status Google Native. SQLAdmin. V1. Inputs. Disk Encryption Status 
- Encryption status specific to a backup.
- EndTime string
- The time the backup operation completed in UTC timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- EnqueuedTime string
- The time the run was enqueued in UTC timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- Error
Pulumi.Google Native. SQLAdmin. V1. Inputs. Operation Error 
- Information about why the backup operation failed. This is only present if the run has the FAILED status.
- Id string
- The identifier for this backup run. Unique only for a specific Cloud SQL instance.
- Kind string
- This is always sql#backupRun.
- Location string
- Location of the backups.
- Project string
- SelfLink string
- The URI of this resource.
- StartTime string
- The time the backup operation actually started in UTC timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- TimeZone string
- Backup time zone to prevent restores to an instance with a different time zone. Now relevant only for SQL Server.
- Type
Pulumi.Google Native. SQLAdmin. V1. Backup Run Type 
- The type of this run; can be either "AUTOMATED" or "ON_DEMAND" or "FINAL". This field defaults to "ON_DEMAND" and is ignored, when specified for insert requests.
- WindowStart stringTime 
- The start time of the backup window during which this the backup was attempted in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- Instance string
- Name of the database instance.
- BackupKind BackupRun Backup Kind 
- Specifies the kind of backup, PHYSICAL or DEFAULT_SNAPSHOT.
- Description string
- The description of this run, only applicable to on-demand backups.
- DiskEncryption DiskConfiguration Encryption Configuration Args 
- Encryption configuration specific to a backup.
- DiskEncryption DiskStatus Encryption Status Args 
- Encryption status specific to a backup.
- EndTime string
- The time the backup operation completed in UTC timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- EnqueuedTime string
- The time the run was enqueued in UTC timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- Error
OperationError Args 
- Information about why the backup operation failed. This is only present if the run has the FAILED status.
- Id string
- The identifier for this backup run. Unique only for a specific Cloud SQL instance.
- Kind string
- This is always sql#backupRun.
- Location string
- Location of the backups.
- Project string
- SelfLink string
- The URI of this resource.
- StartTime string
- The time the backup operation actually started in UTC timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- TimeZone string
- Backup time zone to prevent restores to an instance with a different time zone. Now relevant only for SQL Server.
- Type
BackupRun Type 
- The type of this run; can be either "AUTOMATED" or "ON_DEMAND" or "FINAL". This field defaults to "ON_DEMAND" and is ignored, when specified for insert requests.
- WindowStart stringTime 
- The start time of the backup window during which this the backup was attempted in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- instance String
- Name of the database instance.
- backupKind BackupRun Backup Kind 
- Specifies the kind of backup, PHYSICAL or DEFAULT_SNAPSHOT.
- description String
- The description of this run, only applicable to on-demand backups.
- diskEncryption DiskConfiguration Encryption Configuration 
- Encryption configuration specific to a backup.
- diskEncryption DiskStatus Encryption Status 
- Encryption status specific to a backup.
- endTime String
- The time the backup operation completed in UTC timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- enqueuedTime String
- The time the run was enqueued in UTC timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- error
OperationError 
- Information about why the backup operation failed. This is only present if the run has the FAILED status.
- id String
- The identifier for this backup run. Unique only for a specific Cloud SQL instance.
- kind String
- This is always sql#backupRun.
- location String
- Location of the backups.
- project String
- selfLink String
- The URI of this resource.
- startTime String
- The time the backup operation actually started in UTC timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- timeZone String
- Backup time zone to prevent restores to an instance with a different time zone. Now relevant only for SQL Server.
- type
BackupRun Type 
- The type of this run; can be either "AUTOMATED" or "ON_DEMAND" or "FINAL". This field defaults to "ON_DEMAND" and is ignored, when specified for insert requests.
- windowStart StringTime 
- The start time of the backup window during which this the backup was attempted in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- instance string
- Name of the database instance.
- backupKind BackupRun Backup Kind 
- Specifies the kind of backup, PHYSICAL or DEFAULT_SNAPSHOT.
- description string
- The description of this run, only applicable to on-demand backups.
- diskEncryption DiskConfiguration Encryption Configuration 
- Encryption configuration specific to a backup.
- diskEncryption DiskStatus Encryption Status 
- Encryption status specific to a backup.
- endTime string
- The time the backup operation completed in UTC timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- enqueuedTime string
- The time the run was enqueued in UTC timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- error
OperationError 
- Information about why the backup operation failed. This is only present if the run has the FAILED status.
- id string
- The identifier for this backup run. Unique only for a specific Cloud SQL instance.
- kind string
- This is always sql#backupRun.
- location string
- Location of the backups.
- project string
- selfLink string
- The URI of this resource.
- startTime string
- The time the backup operation actually started in UTC timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- timeZone string
- Backup time zone to prevent restores to an instance with a different time zone. Now relevant only for SQL Server.
- type
BackupRun Type 
- The type of this run; can be either "AUTOMATED" or "ON_DEMAND" or "FINAL". This field defaults to "ON_DEMAND" and is ignored, when specified for insert requests.
- windowStart stringTime 
- The start time of the backup window during which this the backup was attempted in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- instance str
- Name of the database instance.
- backup_kind BackupRun Backup Kind 
- Specifies the kind of backup, PHYSICAL or DEFAULT_SNAPSHOT.
- description str
- The description of this run, only applicable to on-demand backups.
- disk_encryption_ Diskconfiguration Encryption Configuration Args 
- Encryption configuration specific to a backup.
- disk_encryption_ Diskstatus Encryption Status Args 
- Encryption status specific to a backup.
- end_time str
- The time the backup operation completed in UTC timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- enqueued_time str
- The time the run was enqueued in UTC timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- error
OperationError Args 
- Information about why the backup operation failed. This is only present if the run has the FAILED status.
- id str
- The identifier for this backup run. Unique only for a specific Cloud SQL instance.
- kind str
- This is always sql#backupRun.
- location str
- Location of the backups.
- project str
- self_link str
- The URI of this resource.
- start_time str
- The time the backup operation actually started in UTC timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- time_zone str
- Backup time zone to prevent restores to an instance with a different time zone. Now relevant only for SQL Server.
- type
BackupRun Type 
- The type of this run; can be either "AUTOMATED" or "ON_DEMAND" or "FINAL". This field defaults to "ON_DEMAND" and is ignored, when specified for insert requests.
- window_start_ strtime 
- The start time of the backup window during which this the backup was attempted in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- instance String
- Name of the database instance.
- backupKind "SQL_BACKUP_KIND_UNSPECIFIED" | "SNAPSHOT" | "PHYSICAL"
- Specifies the kind of backup, PHYSICAL or DEFAULT_SNAPSHOT.
- description String
- The description of this run, only applicable to on-demand backups.
- diskEncryption Property MapConfiguration 
- Encryption configuration specific to a backup.
- diskEncryption Property MapStatus 
- Encryption status specific to a backup.
- endTime String
- The time the backup operation completed in UTC timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- enqueuedTime String
- The time the run was enqueued in UTC timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- error Property Map
- Information about why the backup operation failed. This is only present if the run has the FAILED status.
- id String
- The identifier for this backup run. Unique only for a specific Cloud SQL instance.
- kind String
- This is always sql#backupRun.
- location String
- Location of the backups.
- project String
- selfLink String
- The URI of this resource.
- startTime String
- The time the backup operation actually started in UTC timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
- timeZone String
- Backup time zone to prevent restores to an instance with a different time zone. Now relevant only for SQL Server.
- type "SQL_BACKUP_RUN_TYPE_UNSPECIFIED" | "AUTOMATED" | "ON_DEMAND"
- The type of this run; can be either "AUTOMATED" or "ON_DEMAND" or "FINAL". This field defaults to "ON_DEMAND" and is ignored, when specified for insert requests.
- windowStart StringTime 
- The start time of the backup window during which this the backup was attempted in RFC 3339 format, for example 2012-11-15T16:19:00.094Z.
Outputs
All input properties are implicitly available as output properties. Additionally, the BackupRun resource produces the following output properties:
Supporting Types
BackupRunBackupKind, BackupRunBackupKindArgs        
- SqlBackup Kind Unspecified 
- SQL_BACKUP_KIND_UNSPECIFIEDThis is an unknown BackupKind.
- Snapshot
- SNAPSHOTThe snapshot based backups
- Physical
- PHYSICALPhysical backups
- BackupRun Backup Kind Sql Backup Kind Unspecified 
- SQL_BACKUP_KIND_UNSPECIFIEDThis is an unknown BackupKind.
- BackupRun Backup Kind Snapshot 
- SNAPSHOTThe snapshot based backups
- BackupRun Backup Kind Physical 
- PHYSICALPhysical backups
- SqlBackup Kind Unspecified 
- SQL_BACKUP_KIND_UNSPECIFIEDThis is an unknown BackupKind.
- Snapshot
- SNAPSHOTThe snapshot based backups
- Physical
- PHYSICALPhysical backups
- SqlBackup Kind Unspecified 
- SQL_BACKUP_KIND_UNSPECIFIEDThis is an unknown BackupKind.
- Snapshot
- SNAPSHOTThe snapshot based backups
- Physical
- PHYSICALPhysical backups
- SQL_BACKUP_KIND_UNSPECIFIED
- SQL_BACKUP_KIND_UNSPECIFIEDThis is an unknown BackupKind.
- SNAPSHOT
- SNAPSHOTThe snapshot based backups
- PHYSICAL
- PHYSICALPhysical backups
- "SQL_BACKUP_KIND_UNSPECIFIED"
- SQL_BACKUP_KIND_UNSPECIFIEDThis is an unknown BackupKind.
- "SNAPSHOT"
- SNAPSHOTThe snapshot based backups
- "PHYSICAL"
- PHYSICALPhysical backups
BackupRunType, BackupRunTypeArgs      
- SqlBackup Run Type Unspecified 
- SQL_BACKUP_RUN_TYPE_UNSPECIFIEDThis is an unknown BackupRun type.
- Automated
- AUTOMATEDThe backup schedule automatically triggers a backup.
- OnDemand 
- ON_DEMANDThe user manually triggers a backup.
- BackupRun Type Sql Backup Run Type Unspecified 
- SQL_BACKUP_RUN_TYPE_UNSPECIFIEDThis is an unknown BackupRun type.
- BackupRun Type Automated 
- AUTOMATEDThe backup schedule automatically triggers a backup.
- BackupRun Type On Demand 
- ON_DEMANDThe user manually triggers a backup.
- SqlBackup Run Type Unspecified 
- SQL_BACKUP_RUN_TYPE_UNSPECIFIEDThis is an unknown BackupRun type.
- Automated
- AUTOMATEDThe backup schedule automatically triggers a backup.
- OnDemand 
- ON_DEMANDThe user manually triggers a backup.
- SqlBackup Run Type Unspecified 
- SQL_BACKUP_RUN_TYPE_UNSPECIFIEDThis is an unknown BackupRun type.
- Automated
- AUTOMATEDThe backup schedule automatically triggers a backup.
- OnDemand 
- ON_DEMANDThe user manually triggers a backup.
- SQL_BACKUP_RUN_TYPE_UNSPECIFIED
- SQL_BACKUP_RUN_TYPE_UNSPECIFIEDThis is an unknown BackupRun type.
- AUTOMATED
- AUTOMATEDThe backup schedule automatically triggers a backup.
- ON_DEMAND
- ON_DEMANDThe user manually triggers a backup.
- "SQL_BACKUP_RUN_TYPE_UNSPECIFIED"
- SQL_BACKUP_RUN_TYPE_UNSPECIFIEDThis is an unknown BackupRun type.
- "AUTOMATED"
- AUTOMATEDThe backup schedule automatically triggers a backup.
- "ON_DEMAND"
- ON_DEMANDThe user manually triggers a backup.
DiskEncryptionConfiguration, DiskEncryptionConfigurationArgs      
- Kind string
- This is always sql#diskEncryptionConfiguration.
- KmsKey stringName 
- Resource name of KMS key for disk encryption
- Kind string
- This is always sql#diskEncryptionConfiguration.
- KmsKey stringName 
- Resource name of KMS key for disk encryption
- kind String
- This is always sql#diskEncryptionConfiguration.
- kmsKey StringName 
- Resource name of KMS key for disk encryption
- kind string
- This is always sql#diskEncryptionConfiguration.
- kmsKey stringName 
- Resource name of KMS key for disk encryption
- kind str
- This is always sql#diskEncryptionConfiguration.
- kms_key_ strname 
- Resource name of KMS key for disk encryption
- kind String
- This is always sql#diskEncryptionConfiguration.
- kmsKey StringName 
- Resource name of KMS key for disk encryption
DiskEncryptionConfigurationResponse, DiskEncryptionConfigurationResponseArgs        
- Kind string
- This is always sql#diskEncryptionConfiguration.
- KmsKey stringName 
- Resource name of KMS key for disk encryption
- Kind string
- This is always sql#diskEncryptionConfiguration.
- KmsKey stringName 
- Resource name of KMS key for disk encryption
- kind String
- This is always sql#diskEncryptionConfiguration.
- kmsKey StringName 
- Resource name of KMS key for disk encryption
- kind string
- This is always sql#diskEncryptionConfiguration.
- kmsKey stringName 
- Resource name of KMS key for disk encryption
- kind str
- This is always sql#diskEncryptionConfiguration.
- kms_key_ strname 
- Resource name of KMS key for disk encryption
- kind String
- This is always sql#diskEncryptionConfiguration.
- kmsKey StringName 
- Resource name of KMS key for disk encryption
DiskEncryptionStatus, DiskEncryptionStatusArgs      
- Kind string
- This is always sql#diskEncryptionStatus.
- KmsKey stringVersion Name 
- KMS key version used to encrypt the Cloud SQL instance resource
- Kind string
- This is always sql#diskEncryptionStatus.
- KmsKey stringVersion Name 
- KMS key version used to encrypt the Cloud SQL instance resource
- kind String
- This is always sql#diskEncryptionStatus.
- kmsKey StringVersion Name 
- KMS key version used to encrypt the Cloud SQL instance resource
- kind string
- This is always sql#diskEncryptionStatus.
- kmsKey stringVersion Name 
- KMS key version used to encrypt the Cloud SQL instance resource
- kind str
- This is always sql#diskEncryptionStatus.
- kms_key_ strversion_ name 
- KMS key version used to encrypt the Cloud SQL instance resource
- kind String
- This is always sql#diskEncryptionStatus.
- kmsKey StringVersion Name 
- KMS key version used to encrypt the Cloud SQL instance resource
DiskEncryptionStatusResponse, DiskEncryptionStatusResponseArgs        
- Kind string
- This is always sql#diskEncryptionStatus.
- KmsKey stringVersion Name 
- KMS key version used to encrypt the Cloud SQL instance resource
- Kind string
- This is always sql#diskEncryptionStatus.
- KmsKey stringVersion Name 
- KMS key version used to encrypt the Cloud SQL instance resource
- kind String
- This is always sql#diskEncryptionStatus.
- kmsKey StringVersion Name 
- KMS key version used to encrypt the Cloud SQL instance resource
- kind string
- This is always sql#diskEncryptionStatus.
- kmsKey stringVersion Name 
- KMS key version used to encrypt the Cloud SQL instance resource
- kind str
- This is always sql#diskEncryptionStatus.
- kms_key_ strversion_ name 
- KMS key version used to encrypt the Cloud SQL instance resource
- kind String
- This is always sql#diskEncryptionStatus.
- kmsKey StringVersion Name 
- KMS key version used to encrypt the Cloud SQL instance resource
OperationError, OperationErrorArgs    
OperationErrorResponse, OperationErrorResponseArgs      
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.