v1beta1

package
v0.32.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 29, 2023 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Not set.
	ClusterAuthorizationModeAuthModeUnspecified = ClusterAuthorizationMode("AUTH_MODE_UNSPECIFIED")
	// IAM basic authorization mode
	ClusterAuthorizationModeAuthModeIamAuth = ClusterAuthorizationMode("AUTH_MODE_IAM_AUTH")
	// Authorization disabled mode
	ClusterAuthorizationModeAuthModeDisabled = ClusterAuthorizationMode("AUTH_MODE_DISABLED")
)
View Source
const (
	// In-transit encryption not set.
	ClusterTransitEncryptionModeTransitEncryptionModeUnspecified = ClusterTransitEncryptionMode("TRANSIT_ENCRYPTION_MODE_UNSPECIFIED")
	// In-transit encryption disabled.
	ClusterTransitEncryptionModeTransitEncryptionModeDisabled = ClusterTransitEncryptionMode("TRANSIT_ENCRYPTION_MODE_DISABLED")
	// Use server managed encryption for in-transit encryption.
	ClusterTransitEncryptionModeTransitEncryptionModeServerAuthentication = ClusterTransitEncryptionMode("TRANSIT_ENCRYPTION_MODE_SERVER_AUTHENTICATION")
)
View Source
const (
	// Not set.
	InstanceConnectModeConnectModeUnspecified = InstanceConnectMode("CONNECT_MODE_UNSPECIFIED")
	// Connect via direct peering to the Memorystore for Redis hosted service.
	InstanceConnectModeDirectPeering = InstanceConnectMode("DIRECT_PEERING")
	// Connect your Memorystore for Redis instance using Private Service Access. Private services access provides an IP address range for multiple Google Cloud services, including Memorystore.
	InstanceConnectModePrivateServiceAccess = InstanceConnectMode("PRIVATE_SERVICE_ACCESS")
)
View Source
const (
	// If not set, Memorystore Redis backend will default to READ_REPLICAS_DISABLED.
	InstanceReadReplicasModeReadReplicasModeUnspecified = InstanceReadReplicasMode("READ_REPLICAS_MODE_UNSPECIFIED")
	// If disabled, read endpoint will not be provided and the instance cannot scale up or down the number of replicas.
	InstanceReadReplicasModeReadReplicasDisabled = InstanceReadReplicasMode("READ_REPLICAS_DISABLED")
	// If enabled, read endpoint will be provided and the instance can scale up and down the number of replicas. Not valid for basic tier.
	InstanceReadReplicasModeReadReplicasEnabled = InstanceReadReplicasMode("READ_REPLICAS_ENABLED")
)
View Source
const (
	// Not set.
	InstanceSuspensionReasonsItemSuspensionReasonUnspecified = InstanceSuspensionReasonsItem("SUSPENSION_REASON_UNSPECIFIED")
	// Something wrong with the CMEK key provided by customer.
	InstanceSuspensionReasonsItemCustomerManagedKeyIssue = InstanceSuspensionReasonsItem("CUSTOMER_MANAGED_KEY_ISSUE")
)
View Source
const (
	// Not set.
	InstanceTierTierUnspecified = InstanceTier("TIER_UNSPECIFIED")
	// BASIC tier: standalone instance
	InstanceTierBasic = InstanceTier("BASIC")
	// STANDARD_HA tier: highly available primary/replica instances
	InstanceTierStandardHa = InstanceTier("STANDARD_HA")
)
View Source
const (
	// Not set.
	InstanceTransitEncryptionModeTransitEncryptionModeUnspecified = InstanceTransitEncryptionMode("TRANSIT_ENCRYPTION_MODE_UNSPECIFIED")
	// Client to Server traffic encryption enabled with server authentication.
	InstanceTransitEncryptionModeServerAuthentication = InstanceTransitEncryptionMode("SERVER_AUTHENTICATION")
	// TLS is disabled for the instance.
	InstanceTransitEncryptionModeDisabled = InstanceTransitEncryptionMode("DISABLED")
)
View Source
const (
	// Not set.
	PersistenceConfigPersistenceModePersistenceModeUnspecified = PersistenceConfigPersistenceMode("PERSISTENCE_MODE_UNSPECIFIED")
	// Persistence is disabled for the instance, and any existing snapshots are deleted.
	PersistenceConfigPersistenceModeDisabled = PersistenceConfigPersistenceMode("DISABLED")
	// RDB based Persistence is enabled.
	PersistenceConfigPersistenceModeRdb = PersistenceConfigPersistenceMode("RDB")
)
View Source
const (
	// Not set.
	PersistenceConfigRdbSnapshotPeriodSnapshotPeriodUnspecified = PersistenceConfigRdbSnapshotPeriod("SNAPSHOT_PERIOD_UNSPECIFIED")
	// Snapshot every 1 hour.
	PersistenceConfigRdbSnapshotPeriodOneHour = PersistenceConfigRdbSnapshotPeriod("ONE_HOUR")
	// Snapshot every 6 hours.
	PersistenceConfigRdbSnapshotPeriodSixHours = PersistenceConfigRdbSnapshotPeriod("SIX_HOURS")
	// Snapshot every 12 hours.
	PersistenceConfigRdbSnapshotPeriodTwelveHours = PersistenceConfigRdbSnapshotPeriod("TWELVE_HOURS")
	// Snapshot every 24 hours.
	PersistenceConfigRdbSnapshotPeriodTwentyFourHours = PersistenceConfigRdbSnapshotPeriod("TWENTY_FOUR_HOURS")
)
View Source
const (
	// The day of the week is unspecified.
	WeeklyMaintenanceWindowDayDayOfWeekUnspecified = WeeklyMaintenanceWindowDay("DAY_OF_WEEK_UNSPECIFIED")
	// Monday
	WeeklyMaintenanceWindowDayMonday = WeeklyMaintenanceWindowDay("MONDAY")
	// Tuesday
	WeeklyMaintenanceWindowDayTuesday = WeeklyMaintenanceWindowDay("TUESDAY")
	// Wednesday
	WeeklyMaintenanceWindowDayWednesday = WeeklyMaintenanceWindowDay("WEDNESDAY")
	// Thursday
	WeeklyMaintenanceWindowDayThursday = WeeklyMaintenanceWindowDay("THURSDAY")
	// Friday
	WeeklyMaintenanceWindowDayFriday = WeeklyMaintenanceWindowDay("FRIDAY")
	// Saturday
	WeeklyMaintenanceWindowDaySaturday = WeeklyMaintenanceWindowDay("SATURDAY")
	// Sunday
	WeeklyMaintenanceWindowDaySunday = WeeklyMaintenanceWindowDay("SUNDAY")
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Cluster added in v0.32.0

type Cluster struct {
	pulumi.CustomResourceState

	// Optional. The authorization mode of the Redis cluster. If not provided, auth feature is disabled for the cluster.
	AuthorizationMode pulumi.StringOutput `pulumi:"authorizationMode"`
	// Required. The logical name of the Redis cluster in the customer project with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the customer project / location
	ClusterId pulumi.StringOutput `pulumi:"clusterId"`
	// The timestamp associated with the cluster creation request.
	CreateTime pulumi.StringOutput `pulumi:"createTime"`
	// Endpoints created on each given network, for Redis clients to connect to the cluster. Currently only one discovery endpoint is supported.
	DiscoveryEndpoints DiscoveryEndpointResponseArrayOutput `pulumi:"discoveryEndpoints"`
	Location           pulumi.StringOutput                  `pulumi:"location"`
	// Unique name of the resource in this scope including project and location using the form: `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}`
	Name    pulumi.StringOutput `pulumi:"name"`
	Project pulumi.StringOutput `pulumi:"project"`
	// Each PscConfig configures the consumer network where IPs will be designated to the cluster for client access through Private Service Connect Automation. Currently, only one PscConfig is supported.
	PscConfigs PscConfigResponseArrayOutput `pulumi:"pscConfigs"`
	// PSC connections for discovery of the cluster topology and accessing the cluster.
	PscConnections PscConnectionResponseArrayOutput `pulumi:"pscConnections"`
	// Optional. The number of replica nodes per shard.
	ReplicaCount pulumi.IntOutput `pulumi:"replicaCount"`
	// Idempotent request UUID.
	RequestId pulumi.StringPtrOutput `pulumi:"requestId"`
	// Number of shards for the Redis cluster.
	ShardCount pulumi.IntOutput `pulumi:"shardCount"`
	// Redis memory size in GB for the entire cluster.
	SizeGb pulumi.IntOutput `pulumi:"sizeGb"`
	// The current state of this cluster. Can be CREATING, READY, UPDATING, DELETING and SUSPENDED
	State pulumi.StringOutput `pulumi:"state"`
	// Additional information about the current state of the cluster.
	StateInfo StateInfoResponseOutput `pulumi:"stateInfo"`
	// Optional. The in-transit encryption for the Redis cluster. If not provided, encryption is disabled for the cluster.
	TransitEncryptionMode pulumi.StringOutput `pulumi:"transitEncryptionMode"`
	// System assigned, unique identifier for the cluster.
	Uid pulumi.StringOutput `pulumi:"uid"`
}

Creates a Redis cluster based on the specified properties. The creation is executed asynchronously and callers may check the returned operation to track its progress. Once the operation is completed the Redis cluster will be fully functional. The completed longrunning.Operation will contain the new cluster object in the response field. The returned operation is automatically deleted after a few hours, so there is no need to call DeleteOperation.

func GetCluster added in v0.32.0

func GetCluster(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *ClusterState, opts ...pulumi.ResourceOption) (*Cluster, error)

GetCluster gets an existing Cluster resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewCluster added in v0.32.0

func NewCluster(ctx *pulumi.Context,
	name string, args *ClusterArgs, opts ...pulumi.ResourceOption) (*Cluster, error)

NewCluster registers a new resource with the given unique name, arguments, and options.

func (*Cluster) ElementType added in v0.32.0

func (*Cluster) ElementType() reflect.Type

func (*Cluster) ToClusterOutput added in v0.32.0

func (i *Cluster) ToClusterOutput() ClusterOutput

func (*Cluster) ToClusterOutputWithContext added in v0.32.0

func (i *Cluster) ToClusterOutputWithContext(ctx context.Context) ClusterOutput

type ClusterArgs added in v0.32.0

type ClusterArgs struct {
	// Optional. The authorization mode of the Redis cluster. If not provided, auth feature is disabled for the cluster.
	AuthorizationMode ClusterAuthorizationModePtrInput
	// Required. The logical name of the Redis cluster in the customer project with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the customer project / location
	ClusterId pulumi.StringInput
	Location  pulumi.StringPtrInput
	// Unique name of the resource in this scope including project and location using the form: `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}`
	Name    pulumi.StringPtrInput
	Project pulumi.StringPtrInput
	// Each PscConfig configures the consumer network where IPs will be designated to the cluster for client access through Private Service Connect Automation. Currently, only one PscConfig is supported.
	PscConfigs PscConfigArrayInput
	// Optional. The number of replica nodes per shard.
	ReplicaCount pulumi.IntPtrInput
	// Idempotent request UUID.
	RequestId pulumi.StringPtrInput
	// Number of shards for the Redis cluster.
	ShardCount pulumi.IntInput
	// Optional. The in-transit encryption for the Redis cluster. If not provided, encryption is disabled for the cluster.
	TransitEncryptionMode ClusterTransitEncryptionModePtrInput
}

The set of arguments for constructing a Cluster resource.

func (ClusterArgs) ElementType added in v0.32.0

func (ClusterArgs) ElementType() reflect.Type

type ClusterAuthorizationMode added in v0.32.0

type ClusterAuthorizationMode string

Optional. The authorization mode of the Redis cluster. If not provided, auth feature is disabled for the cluster.

func (ClusterAuthorizationMode) ElementType added in v0.32.0

func (ClusterAuthorizationMode) ElementType() reflect.Type

func (ClusterAuthorizationMode) ToClusterAuthorizationModeOutput added in v0.32.0

func (e ClusterAuthorizationMode) ToClusterAuthorizationModeOutput() ClusterAuthorizationModeOutput

func (ClusterAuthorizationMode) ToClusterAuthorizationModeOutputWithContext added in v0.32.0

func (e ClusterAuthorizationMode) ToClusterAuthorizationModeOutputWithContext(ctx context.Context) ClusterAuthorizationModeOutput

func (ClusterAuthorizationMode) ToClusterAuthorizationModePtrOutput added in v0.32.0

func (e ClusterAuthorizationMode) ToClusterAuthorizationModePtrOutput() ClusterAuthorizationModePtrOutput

func (ClusterAuthorizationMode) ToClusterAuthorizationModePtrOutputWithContext added in v0.32.0

func (e ClusterAuthorizationMode) ToClusterAuthorizationModePtrOutputWithContext(ctx context.Context) ClusterAuthorizationModePtrOutput

func (ClusterAuthorizationMode) ToStringOutput added in v0.32.0

func (e ClusterAuthorizationMode) ToStringOutput() pulumi.StringOutput

func (ClusterAuthorizationMode) ToStringOutputWithContext added in v0.32.0

func (e ClusterAuthorizationMode) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (ClusterAuthorizationMode) ToStringPtrOutput added in v0.32.0

func (e ClusterAuthorizationMode) ToStringPtrOutput() pulumi.StringPtrOutput

func (ClusterAuthorizationMode) ToStringPtrOutputWithContext added in v0.32.0

func (e ClusterAuthorizationMode) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type ClusterAuthorizationModeInput added in v0.32.0

type ClusterAuthorizationModeInput interface {
	pulumi.Input

	ToClusterAuthorizationModeOutput() ClusterAuthorizationModeOutput
	ToClusterAuthorizationModeOutputWithContext(context.Context) ClusterAuthorizationModeOutput
}

ClusterAuthorizationModeInput is an input type that accepts ClusterAuthorizationModeArgs and ClusterAuthorizationModeOutput values. You can construct a concrete instance of `ClusterAuthorizationModeInput` via:

ClusterAuthorizationModeArgs{...}

type ClusterAuthorizationModeOutput added in v0.32.0

type ClusterAuthorizationModeOutput struct{ *pulumi.OutputState }

func (ClusterAuthorizationModeOutput) ElementType added in v0.32.0

func (ClusterAuthorizationModeOutput) ToClusterAuthorizationModeOutput added in v0.32.0

func (o ClusterAuthorizationModeOutput) ToClusterAuthorizationModeOutput() ClusterAuthorizationModeOutput

func (ClusterAuthorizationModeOutput) ToClusterAuthorizationModeOutputWithContext added in v0.32.0

func (o ClusterAuthorizationModeOutput) ToClusterAuthorizationModeOutputWithContext(ctx context.Context) ClusterAuthorizationModeOutput

func (ClusterAuthorizationModeOutput) ToClusterAuthorizationModePtrOutput added in v0.32.0

func (o ClusterAuthorizationModeOutput) ToClusterAuthorizationModePtrOutput() ClusterAuthorizationModePtrOutput

func (ClusterAuthorizationModeOutput) ToClusterAuthorizationModePtrOutputWithContext added in v0.32.0

func (o ClusterAuthorizationModeOutput) ToClusterAuthorizationModePtrOutputWithContext(ctx context.Context) ClusterAuthorizationModePtrOutput

func (ClusterAuthorizationModeOutput) ToStringOutput added in v0.32.0

func (ClusterAuthorizationModeOutput) ToStringOutputWithContext added in v0.32.0

func (o ClusterAuthorizationModeOutput) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (ClusterAuthorizationModeOutput) ToStringPtrOutput added in v0.32.0

func (ClusterAuthorizationModeOutput) ToStringPtrOutputWithContext added in v0.32.0

func (o ClusterAuthorizationModeOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type ClusterAuthorizationModePtrInput added in v0.32.0

type ClusterAuthorizationModePtrInput interface {
	pulumi.Input

	ToClusterAuthorizationModePtrOutput() ClusterAuthorizationModePtrOutput
	ToClusterAuthorizationModePtrOutputWithContext(context.Context) ClusterAuthorizationModePtrOutput
}

func ClusterAuthorizationModePtr added in v0.32.0

func ClusterAuthorizationModePtr(v string) ClusterAuthorizationModePtrInput

type ClusterAuthorizationModePtrOutput added in v0.32.0

type ClusterAuthorizationModePtrOutput struct{ *pulumi.OutputState }

func (ClusterAuthorizationModePtrOutput) Elem added in v0.32.0

func (ClusterAuthorizationModePtrOutput) ElementType added in v0.32.0

func (ClusterAuthorizationModePtrOutput) ToClusterAuthorizationModePtrOutput added in v0.32.0

func (o ClusterAuthorizationModePtrOutput) ToClusterAuthorizationModePtrOutput() ClusterAuthorizationModePtrOutput

func (ClusterAuthorizationModePtrOutput) ToClusterAuthorizationModePtrOutputWithContext added in v0.32.0

func (o ClusterAuthorizationModePtrOutput) ToClusterAuthorizationModePtrOutputWithContext(ctx context.Context) ClusterAuthorizationModePtrOutput

func (ClusterAuthorizationModePtrOutput) ToStringPtrOutput added in v0.32.0

func (ClusterAuthorizationModePtrOutput) ToStringPtrOutputWithContext added in v0.32.0

func (o ClusterAuthorizationModePtrOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type ClusterInput added in v0.32.0

type ClusterInput interface {
	pulumi.Input

	ToClusterOutput() ClusterOutput
	ToClusterOutputWithContext(ctx context.Context) ClusterOutput
}

type ClusterOutput added in v0.32.0

type ClusterOutput struct{ *pulumi.OutputState }

func (ClusterOutput) AuthorizationMode added in v0.32.0

func (o ClusterOutput) AuthorizationMode() pulumi.StringOutput

Optional. The authorization mode of the Redis cluster. If not provided, auth feature is disabled for the cluster.

func (ClusterOutput) ClusterId added in v0.32.0

func (o ClusterOutput) ClusterId() pulumi.StringOutput

Required. The logical name of the Redis cluster in the customer project with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the customer project / location

func (ClusterOutput) CreateTime added in v0.32.0

func (o ClusterOutput) CreateTime() pulumi.StringOutput

The timestamp associated with the cluster creation request.

func (ClusterOutput) DiscoveryEndpoints added in v0.32.0

func (o ClusterOutput) DiscoveryEndpoints() DiscoveryEndpointResponseArrayOutput

Endpoints created on each given network, for Redis clients to connect to the cluster. Currently only one discovery endpoint is supported.

func (ClusterOutput) ElementType added in v0.32.0

func (ClusterOutput) ElementType() reflect.Type

func (ClusterOutput) Location added in v0.32.0

func (o ClusterOutput) Location() pulumi.StringOutput

func (ClusterOutput) Name added in v0.32.0

Unique name of the resource in this scope including project and location using the form: `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}`

func (ClusterOutput) Project added in v0.32.0

func (o ClusterOutput) Project() pulumi.StringOutput

func (ClusterOutput) PscConfigs added in v0.32.0

Each PscConfig configures the consumer network where IPs will be designated to the cluster for client access through Private Service Connect Automation. Currently, only one PscConfig is supported.

func (ClusterOutput) PscConnections added in v0.32.0

PSC connections for discovery of the cluster topology and accessing the cluster.

func (ClusterOutput) ReplicaCount added in v0.32.0

func (o ClusterOutput) ReplicaCount() pulumi.IntOutput

Optional. The number of replica nodes per shard.

func (ClusterOutput) RequestId added in v0.32.0

func (o ClusterOutput) RequestId() pulumi.StringPtrOutput

Idempotent request UUID.

func (ClusterOutput) ShardCount added in v0.32.0

func (o ClusterOutput) ShardCount() pulumi.IntOutput

Number of shards for the Redis cluster.

func (ClusterOutput) SizeGb added in v0.32.0

func (o ClusterOutput) SizeGb() pulumi.IntOutput

Redis memory size in GB for the entire cluster.

func (ClusterOutput) State added in v0.32.0

func (o ClusterOutput) State() pulumi.StringOutput

The current state of this cluster. Can be CREATING, READY, UPDATING, DELETING and SUSPENDED

func (ClusterOutput) StateInfo added in v0.32.0

func (o ClusterOutput) StateInfo() StateInfoResponseOutput

Additional information about the current state of the cluster.

func (ClusterOutput) ToClusterOutput added in v0.32.0

func (o ClusterOutput) ToClusterOutput() ClusterOutput

func (ClusterOutput) ToClusterOutputWithContext added in v0.32.0

func (o ClusterOutput) ToClusterOutputWithContext(ctx context.Context) ClusterOutput

func (ClusterOutput) TransitEncryptionMode added in v0.32.0

func (o ClusterOutput) TransitEncryptionMode() pulumi.StringOutput

Optional. The in-transit encryption for the Redis cluster. If not provided, encryption is disabled for the cluster.

func (ClusterOutput) Uid added in v0.32.0

System assigned, unique identifier for the cluster.

type ClusterState added in v0.32.0

type ClusterState struct {
}

func (ClusterState) ElementType added in v0.32.0

func (ClusterState) ElementType() reflect.Type

type ClusterTransitEncryptionMode added in v0.32.0

type ClusterTransitEncryptionMode string

Optional. The in-transit encryption for the Redis cluster. If not provided, encryption is disabled for the cluster.

func (ClusterTransitEncryptionMode) ElementType added in v0.32.0

func (ClusterTransitEncryptionMode) ToClusterTransitEncryptionModeOutput added in v0.32.0

func (e ClusterTransitEncryptionMode) ToClusterTransitEncryptionModeOutput() ClusterTransitEncryptionModeOutput

func (ClusterTransitEncryptionMode) ToClusterTransitEncryptionModeOutputWithContext added in v0.32.0

func (e ClusterTransitEncryptionMode) ToClusterTransitEncryptionModeOutputWithContext(ctx context.Context) ClusterTransitEncryptionModeOutput

func (ClusterTransitEncryptionMode) ToClusterTransitEncryptionModePtrOutput added in v0.32.0

func (e ClusterTransitEncryptionMode) ToClusterTransitEncryptionModePtrOutput() ClusterTransitEncryptionModePtrOutput

func (ClusterTransitEncryptionMode) ToClusterTransitEncryptionModePtrOutputWithContext added in v0.32.0

func (e ClusterTransitEncryptionMode) ToClusterTransitEncryptionModePtrOutputWithContext(ctx context.Context) ClusterTransitEncryptionModePtrOutput

func (ClusterTransitEncryptionMode) ToStringOutput added in v0.32.0

func (ClusterTransitEncryptionMode) ToStringOutputWithContext added in v0.32.0

func (e ClusterTransitEncryptionMode) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (ClusterTransitEncryptionMode) ToStringPtrOutput added in v0.32.0

func (e ClusterTransitEncryptionMode) ToStringPtrOutput() pulumi.StringPtrOutput

func (ClusterTransitEncryptionMode) ToStringPtrOutputWithContext added in v0.32.0

func (e ClusterTransitEncryptionMode) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type ClusterTransitEncryptionModeInput added in v0.32.0

type ClusterTransitEncryptionModeInput interface {
	pulumi.Input

	ToClusterTransitEncryptionModeOutput() ClusterTransitEncryptionModeOutput
	ToClusterTransitEncryptionModeOutputWithContext(context.Context) ClusterTransitEncryptionModeOutput
}

ClusterTransitEncryptionModeInput is an input type that accepts ClusterTransitEncryptionModeArgs and ClusterTransitEncryptionModeOutput values. You can construct a concrete instance of `ClusterTransitEncryptionModeInput` via:

ClusterTransitEncryptionModeArgs{...}

type ClusterTransitEncryptionModeOutput added in v0.32.0

type ClusterTransitEncryptionModeOutput struct{ *pulumi.OutputState }

func (ClusterTransitEncryptionModeOutput) ElementType added in v0.32.0

func (ClusterTransitEncryptionModeOutput) ToClusterTransitEncryptionModeOutput added in v0.32.0

func (o ClusterTransitEncryptionModeOutput) ToClusterTransitEncryptionModeOutput() ClusterTransitEncryptionModeOutput

func (ClusterTransitEncryptionModeOutput) ToClusterTransitEncryptionModeOutputWithContext added in v0.32.0

func (o ClusterTransitEncryptionModeOutput) ToClusterTransitEncryptionModeOutputWithContext(ctx context.Context) ClusterTransitEncryptionModeOutput

func (ClusterTransitEncryptionModeOutput) ToClusterTransitEncryptionModePtrOutput added in v0.32.0

func (o ClusterTransitEncryptionModeOutput) ToClusterTransitEncryptionModePtrOutput() ClusterTransitEncryptionModePtrOutput

func (ClusterTransitEncryptionModeOutput) ToClusterTransitEncryptionModePtrOutputWithContext added in v0.32.0

func (o ClusterTransitEncryptionModeOutput) ToClusterTransitEncryptionModePtrOutputWithContext(ctx context.Context) ClusterTransitEncryptionModePtrOutput

func (ClusterTransitEncryptionModeOutput) ToStringOutput added in v0.32.0

func (ClusterTransitEncryptionModeOutput) ToStringOutputWithContext added in v0.32.0

func (o ClusterTransitEncryptionModeOutput) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (ClusterTransitEncryptionModeOutput) ToStringPtrOutput added in v0.32.0

func (ClusterTransitEncryptionModeOutput) ToStringPtrOutputWithContext added in v0.32.0

func (o ClusterTransitEncryptionModeOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type ClusterTransitEncryptionModePtrInput added in v0.32.0

type ClusterTransitEncryptionModePtrInput interface {
	pulumi.Input

	ToClusterTransitEncryptionModePtrOutput() ClusterTransitEncryptionModePtrOutput
	ToClusterTransitEncryptionModePtrOutputWithContext(context.Context) ClusterTransitEncryptionModePtrOutput
}

func ClusterTransitEncryptionModePtr added in v0.32.0

func ClusterTransitEncryptionModePtr(v string) ClusterTransitEncryptionModePtrInput

type ClusterTransitEncryptionModePtrOutput added in v0.32.0

type ClusterTransitEncryptionModePtrOutput struct{ *pulumi.OutputState }

func (ClusterTransitEncryptionModePtrOutput) Elem added in v0.32.0

func (ClusterTransitEncryptionModePtrOutput) ElementType added in v0.32.0

func (ClusterTransitEncryptionModePtrOutput) ToClusterTransitEncryptionModePtrOutput added in v0.32.0

func (o ClusterTransitEncryptionModePtrOutput) ToClusterTransitEncryptionModePtrOutput() ClusterTransitEncryptionModePtrOutput

func (ClusterTransitEncryptionModePtrOutput) ToClusterTransitEncryptionModePtrOutputWithContext added in v0.32.0

func (o ClusterTransitEncryptionModePtrOutput) ToClusterTransitEncryptionModePtrOutputWithContext(ctx context.Context) ClusterTransitEncryptionModePtrOutput

func (ClusterTransitEncryptionModePtrOutput) ToStringPtrOutput added in v0.32.0

func (ClusterTransitEncryptionModePtrOutput) ToStringPtrOutputWithContext added in v0.32.0

func (o ClusterTransitEncryptionModePtrOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type DiscoveryEndpointResponse added in v0.32.0

type DiscoveryEndpointResponse struct {
	// Address of the exposed Redis endpoint used by clients to connect to the service. The address could be either IP or hostname.
	Address string `pulumi:"address"`
	// The port number of the exposed Redis endpoint.
	Port int `pulumi:"port"`
	// Customer configuration for where the endpoint is created and accessed from.
	PscConfig PscConfigResponse `pulumi:"pscConfig"`
}

Endpoints on each network, for Redis clients to connect to the cluster.

type DiscoveryEndpointResponseArrayOutput added in v0.32.0

type DiscoveryEndpointResponseArrayOutput struct{ *pulumi.OutputState }

func (DiscoveryEndpointResponseArrayOutput) ElementType added in v0.32.0

func (DiscoveryEndpointResponseArrayOutput) Index added in v0.32.0

func (DiscoveryEndpointResponseArrayOutput) ToDiscoveryEndpointResponseArrayOutput added in v0.32.0

func (o DiscoveryEndpointResponseArrayOutput) ToDiscoveryEndpointResponseArrayOutput() DiscoveryEndpointResponseArrayOutput

func (DiscoveryEndpointResponseArrayOutput) ToDiscoveryEndpointResponseArrayOutputWithContext added in v0.32.0

func (o DiscoveryEndpointResponseArrayOutput) ToDiscoveryEndpointResponseArrayOutputWithContext(ctx context.Context) DiscoveryEndpointResponseArrayOutput

type DiscoveryEndpointResponseOutput added in v0.32.0

type DiscoveryEndpointResponseOutput struct{ *pulumi.OutputState }

Endpoints on each network, for Redis clients to connect to the cluster.

func (DiscoveryEndpointResponseOutput) Address added in v0.32.0

Address of the exposed Redis endpoint used by clients to connect to the service. The address could be either IP or hostname.

func (DiscoveryEndpointResponseOutput) ElementType added in v0.32.0

func (DiscoveryEndpointResponseOutput) Port added in v0.32.0

The port number of the exposed Redis endpoint.

func (DiscoveryEndpointResponseOutput) PscConfig added in v0.32.0

Customer configuration for where the endpoint is created and accessed from.

func (DiscoveryEndpointResponseOutput) ToDiscoveryEndpointResponseOutput added in v0.32.0

func (o DiscoveryEndpointResponseOutput) ToDiscoveryEndpointResponseOutput() DiscoveryEndpointResponseOutput

func (DiscoveryEndpointResponseOutput) ToDiscoveryEndpointResponseOutputWithContext added in v0.32.0

func (o DiscoveryEndpointResponseOutput) ToDiscoveryEndpointResponseOutputWithContext(ctx context.Context) DiscoveryEndpointResponseOutput

type Instance

type Instance struct {
	pulumi.CustomResourceState

	// Optional. If specified, at least one node will be provisioned in this zone in addition to the zone specified in location_id. Only applicable to standard tier. If provided, it must be a different zone from the one provided in [location_id]. Additional nodes beyond the first 2 will be placed in zones selected by the service.
	AlternativeLocationId pulumi.StringOutput `pulumi:"alternativeLocationId"`
	// Optional. Indicates whether OSS Redis AUTH is enabled for the instance. If set to "true" AUTH is enabled on the instance. Default value is "false" meaning AUTH is disabled.
	AuthEnabled pulumi.BoolOutput `pulumi:"authEnabled"`
	// Optional. The full name of the Google Compute Engine [network](https://cloud.google.com/vpc/docs/vpc) to which the instance is connected. If left unspecified, the `default` network will be used.
	AuthorizedNetwork pulumi.StringOutput `pulumi:"authorizedNetwork"`
	// Optional. The available maintenance versions that an instance could update to.
	AvailableMaintenanceVersions pulumi.StringArrayOutput `pulumi:"availableMaintenanceVersions"`
	// Optional. The network connect mode of the Redis instance. If not provided, the connect mode defaults to DIRECT_PEERING.
	ConnectMode pulumi.StringOutput `pulumi:"connectMode"`
	// The time the instance was created.
	CreateTime pulumi.StringOutput `pulumi:"createTime"`
	// The current zone where the Redis primary node is located. In basic tier, this will always be the same as [location_id]. In standard tier, this can be the zone of any node in the instance.
	CurrentLocationId pulumi.StringOutput `pulumi:"currentLocationId"`
	// Optional. The KMS key reference that the customer provides when trying to create the instance.
	CustomerManagedKey pulumi.StringOutput `pulumi:"customerManagedKey"`
	// An arbitrary and optional user-provided name for the instance.
	DisplayName pulumi.StringOutput `pulumi:"displayName"`
	// Hostname or IP address of the exposed Redis endpoint used by clients to connect to the service.
	Host pulumi.StringOutput `pulumi:"host"`
	// Required. The logical name of the Redis instance in the customer project with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-40 characters. * Must end with a number or a letter. * Must be unique within the customer project / location
	InstanceId pulumi.StringOutput `pulumi:"instanceId"`
	// Resource labels to represent user provided metadata
	Labels   pulumi.StringMapOutput `pulumi:"labels"`
	Location pulumi.StringOutput    `pulumi:"location"`
	// Optional. The maintenance policy for the instance. If not provided, maintenance events can be performed at any time.
	MaintenancePolicy MaintenancePolicyResponseOutput `pulumi:"maintenancePolicy"`
	// Date and time of upcoming maintenance events which have been scheduled.
	MaintenanceSchedule MaintenanceScheduleResponseOutput `pulumi:"maintenanceSchedule"`
	// Optional. The self service update maintenance version. The version is date based such as "20210712_00_00".
	MaintenanceVersion pulumi.StringOutput `pulumi:"maintenanceVersion"`
	// Redis memory size in GiB.
	MemorySizeGb pulumi.IntOutput `pulumi:"memorySizeGb"`
	// Unique name of the resource in this scope including project and location using the form: `projects/{project_id}/locations/{location_id}/instances/{instance_id}` Note: Redis instances are managed and addressed at regional level so location_id here refers to a GCP region; however, users may choose which specific zone (or collection of zones for cross-zone instances) an instance should be provisioned in. Refer to location_id and alternative_location_id fields for more details.
	Name pulumi.StringOutput `pulumi:"name"`
	// Info per node.
	Nodes NodeInfoResponseArrayOutput `pulumi:"nodes"`
	// Optional. Persistence configuration parameters
	PersistenceConfig PersistenceConfigResponseOutput `pulumi:"persistenceConfig"`
	// Cloud IAM identity used by import / export operations to transfer data to/from Cloud Storage. Format is "serviceAccount:". The value may change over time for a given instance so should be checked before each import/export operation.
	PersistenceIamIdentity pulumi.StringOutput `pulumi:"persistenceIamIdentity"`
	// The port number of the exposed Redis endpoint.
	Port    pulumi.IntOutput    `pulumi:"port"`
	Project pulumi.StringOutput `pulumi:"project"`
	// Hostname or IP address of the exposed readonly Redis endpoint. Standard tier only. Targets all healthy replica nodes in instance. Replication is asynchronous and replica nodes will exhibit some lag behind the primary. Write requests must target 'host'.
	ReadEndpoint pulumi.StringOutput `pulumi:"readEndpoint"`
	// The port number of the exposed readonly redis endpoint. Standard tier only. Write requests should target 'port'.
	ReadEndpointPort pulumi.IntOutput `pulumi:"readEndpointPort"`
	// Optional. Read replicas mode for the instance. Defaults to READ_REPLICAS_DISABLED.
	ReadReplicasMode pulumi.StringOutput `pulumi:"readReplicasMode"`
	// Optional. Redis configuration parameters, according to http://redis.io/topics/config. Currently, the only supported parameters are: Redis version 3.2 and newer: * maxmemory-policy * notify-keyspace-events Redis version 4.0 and newer: * activedefrag * lfu-decay-time * lfu-log-factor * maxmemory-gb Redis version 5.0 and newer: * stream-node-max-bytes * stream-node-max-entries
	RedisConfigs pulumi.StringMapOutput `pulumi:"redisConfigs"`
	// Optional. The version of Redis software. If not provided, latest supported version will be used. Currently, the supported values are: * `REDIS_3_2` for Redis 3.2 compatibility * `REDIS_4_0` for Redis 4.0 compatibility (default) * `REDIS_5_0` for Redis 5.0 compatibility * `REDIS_6_X` for Redis 6.x compatibility
	RedisVersion pulumi.StringOutput `pulumi:"redisVersion"`
	// Optional. The number of replica nodes. The valid range for the Standard Tier with read replicas enabled is [1-5] and defaults to 2. If read replicas are not enabled for a Standard Tier instance, the only valid value is 1 and the default is 1. The valid value for basic tier is 0 and the default is also 0.
	ReplicaCount pulumi.IntOutput `pulumi:"replicaCount"`
	// Optional. For DIRECT_PEERING mode, the CIDR range of internal addresses that are reserved for this instance. Range must be unique and non-overlapping with existing subnets in an authorized network. For PRIVATE_SERVICE_ACCESS mode, the name of one allocated IP address ranges associated with this private service access connection. If not provided, the service will choose an unused /29 block, for example, 10.0.0.0/29 or 192.168.0.0/29. For READ_REPLICAS_ENABLED the default block size is /28.
	ReservedIpRange pulumi.StringOutput `pulumi:"reservedIpRange"`
	// Optional. Output only. Reserved for future use. Zone Separation compliance state of the instance. Field name and documentation is obfuscated according to go/zs-resource-status.
	SatisfiesPzs pulumi.BoolOutput `pulumi:"satisfiesPzs"`
	// Optional. Additional IP range for node placement. Required when enabling read replicas on an existing instance. For DIRECT_PEERING mode value must be a CIDR range of size /28, or "auto". For PRIVATE_SERVICE_ACCESS mode value must be the name of an allocated address range associated with the private service access connection, or "auto".
	SecondaryIpRange pulumi.StringOutput `pulumi:"secondaryIpRange"`
	// List of server CA certificates for the instance.
	ServerCaCerts TlsCertificateResponseArrayOutput `pulumi:"serverCaCerts"`
	// The current state of this instance.
	State pulumi.StringOutput `pulumi:"state"`
	// Additional information about the current status of this instance, if available.
	StatusMessage pulumi.StringOutput `pulumi:"statusMessage"`
	// Optional. reasons that causes instance in "SUSPENDED" state.
	SuspensionReasons pulumi.StringArrayOutput `pulumi:"suspensionReasons"`
	// The service tier of the instance.
	Tier pulumi.StringOutput `pulumi:"tier"`
	// Optional. The TLS mode of the Redis instance. If not provided, TLS is disabled for the instance.
	TransitEncryptionMode pulumi.StringOutput `pulumi:"transitEncryptionMode"`
}

Creates a Redis instance based on the specified tier and memory size. By default, the instance is accessible from the project's [default network](https://cloud.google.com/vpc/docs/vpc). The creation is executed asynchronously and callers may check the returned operation to track its progress. Once the operation is completed the Redis instance will be fully functional. The completed longrunning.Operation will contain the new instance object in the response field. The returned operation is automatically deleted after a few hours, so there is no need to call DeleteOperation.

func GetInstance

func GetInstance(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *InstanceState, opts ...pulumi.ResourceOption) (*Instance, error)

GetInstance gets an existing Instance resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewInstance

func NewInstance(ctx *pulumi.Context,
	name string, args *InstanceArgs, opts ...pulumi.ResourceOption) (*Instance, error)

NewInstance registers a new resource with the given unique name, arguments, and options.

func (*Instance) ElementType

func (*Instance) ElementType() reflect.Type

func (*Instance) ToInstanceOutput

func (i *Instance) ToInstanceOutput() InstanceOutput

func (*Instance) ToInstanceOutputWithContext

func (i *Instance) ToInstanceOutputWithContext(ctx context.Context) InstanceOutput

type InstanceArgs

type InstanceArgs struct {
	// Optional. If specified, at least one node will be provisioned in this zone in addition to the zone specified in location_id. Only applicable to standard tier. If provided, it must be a different zone from the one provided in [location_id]. Additional nodes beyond the first 2 will be placed in zones selected by the service.
	AlternativeLocationId pulumi.StringPtrInput
	// Optional. Indicates whether OSS Redis AUTH is enabled for the instance. If set to "true" AUTH is enabled on the instance. Default value is "false" meaning AUTH is disabled.
	AuthEnabled pulumi.BoolPtrInput
	// Optional. The full name of the Google Compute Engine [network](https://cloud.google.com/vpc/docs/vpc) to which the instance is connected. If left unspecified, the `default` network will be used.
	AuthorizedNetwork pulumi.StringPtrInput
	// Optional. The available maintenance versions that an instance could update to.
	AvailableMaintenanceVersions pulumi.StringArrayInput
	// Optional. The network connect mode of the Redis instance. If not provided, the connect mode defaults to DIRECT_PEERING.
	ConnectMode InstanceConnectModePtrInput
	// Optional. The KMS key reference that the customer provides when trying to create the instance.
	CustomerManagedKey pulumi.StringPtrInput
	// An arbitrary and optional user-provided name for the instance.
	DisplayName pulumi.StringPtrInput
	// Required. The logical name of the Redis instance in the customer project with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-40 characters. * Must end with a number or a letter. * Must be unique within the customer project / location
	InstanceId pulumi.StringInput
	// Resource labels to represent user provided metadata
	Labels pulumi.StringMapInput
	// Optional. The zone where the instance will be provisioned. If not provided, the service will choose a zone from the specified region for the instance. For standard tier, additional nodes will be added across multiple zones for protection against zonal failures. If specified, at least one node will be provisioned in this zone.
	Location pulumi.StringPtrInput
	// Optional. The maintenance policy for the instance. If not provided, maintenance events can be performed at any time.
	MaintenancePolicy MaintenancePolicyPtrInput
	// Optional. The self service update maintenance version. The version is date based such as "20210712_00_00".
	MaintenanceVersion pulumi.StringPtrInput
	// Redis memory size in GiB.
	MemorySizeGb pulumi.IntInput
	// Unique name of the resource in this scope including project and location using the form: `projects/{project_id}/locations/{location_id}/instances/{instance_id}` Note: Redis instances are managed and addressed at regional level so location_id here refers to a GCP region; however, users may choose which specific zone (or collection of zones for cross-zone instances) an instance should be provisioned in. Refer to location_id and alternative_location_id fields for more details.
	Name pulumi.StringPtrInput
	// Optional. Persistence configuration parameters
	PersistenceConfig PersistenceConfigPtrInput
	Project           pulumi.StringPtrInput
	// Optional. Read replicas mode for the instance. Defaults to READ_REPLICAS_DISABLED.
	ReadReplicasMode InstanceReadReplicasModePtrInput
	// Optional. Redis configuration parameters, according to http://redis.io/topics/config. Currently, the only supported parameters are: Redis version 3.2 and newer: * maxmemory-policy * notify-keyspace-events Redis version 4.0 and newer: * activedefrag * lfu-decay-time * lfu-log-factor * maxmemory-gb Redis version 5.0 and newer: * stream-node-max-bytes * stream-node-max-entries
	RedisConfigs pulumi.StringMapInput
	// Optional. The version of Redis software. If not provided, latest supported version will be used. Currently, the supported values are: * `REDIS_3_2` for Redis 3.2 compatibility * `REDIS_4_0` for Redis 4.0 compatibility (default) * `REDIS_5_0` for Redis 5.0 compatibility * `REDIS_6_X` for Redis 6.x compatibility
	RedisVersion pulumi.StringPtrInput
	// Optional. The number of replica nodes. The valid range for the Standard Tier with read replicas enabled is [1-5] and defaults to 2. If read replicas are not enabled for a Standard Tier instance, the only valid value is 1 and the default is 1. The valid value for basic tier is 0 and the default is also 0.
	ReplicaCount pulumi.IntPtrInput
	// Optional. For DIRECT_PEERING mode, the CIDR range of internal addresses that are reserved for this instance. Range must be unique and non-overlapping with existing subnets in an authorized network. For PRIVATE_SERVICE_ACCESS mode, the name of one allocated IP address ranges associated with this private service access connection. If not provided, the service will choose an unused /29 block, for example, 10.0.0.0/29 or 192.168.0.0/29. For READ_REPLICAS_ENABLED the default block size is /28.
	ReservedIpRange pulumi.StringPtrInput
	// Optional. Additional IP range for node placement. Required when enabling read replicas on an existing instance. For DIRECT_PEERING mode value must be a CIDR range of size /28, or "auto". For PRIVATE_SERVICE_ACCESS mode value must be the name of an allocated address range associated with the private service access connection, or "auto".
	SecondaryIpRange pulumi.StringPtrInput
	// Optional. reasons that causes instance in "SUSPENDED" state.
	SuspensionReasons InstanceSuspensionReasonsItemArrayInput
	// The service tier of the instance.
	Tier InstanceTierInput
	// Optional. The TLS mode of the Redis instance. If not provided, TLS is disabled for the instance.
	TransitEncryptionMode InstanceTransitEncryptionModePtrInput
}

The set of arguments for constructing a Instance resource.

func (InstanceArgs) ElementType

func (InstanceArgs) ElementType() reflect.Type

type InstanceConnectMode added in v0.4.0

type InstanceConnectMode string

Optional. The network connect mode of the Redis instance. If not provided, the connect mode defaults to DIRECT_PEERING.

func (InstanceConnectMode) ElementType added in v0.4.0

func (InstanceConnectMode) ElementType() reflect.Type

func (InstanceConnectMode) ToInstanceConnectModeOutput added in v0.6.0

func (e InstanceConnectMode) ToInstanceConnectModeOutput() InstanceConnectModeOutput

func (InstanceConnectMode) ToInstanceConnectModeOutputWithContext added in v0.6.0

func (e InstanceConnectMode) ToInstanceConnectModeOutputWithContext(ctx context.Context) InstanceConnectModeOutput

func (InstanceConnectMode) ToInstanceConnectModePtrOutput added in v0.6.0

func (e InstanceConnectMode) ToInstanceConnectModePtrOutput() InstanceConnectModePtrOutput

func (InstanceConnectMode) ToInstanceConnectModePtrOutputWithContext added in v0.6.0

func (e InstanceConnectMode) ToInstanceConnectModePtrOutputWithContext(ctx context.Context) InstanceConnectModePtrOutput

func (InstanceConnectMode) ToStringOutput added in v0.4.0

func (e InstanceConnectMode) ToStringOutput() pulumi.StringOutput

func (InstanceConnectMode) ToStringOutputWithContext added in v0.4.0

func (e InstanceConnectMode) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (InstanceConnectMode) ToStringPtrOutput added in v0.4.0

func (e InstanceConnectMode) ToStringPtrOutput() pulumi.StringPtrOutput

func (InstanceConnectMode) ToStringPtrOutputWithContext added in v0.4.0

func (e InstanceConnectMode) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type InstanceConnectModeInput added in v0.6.0

type InstanceConnectModeInput interface {
	pulumi.Input

	ToInstanceConnectModeOutput() InstanceConnectModeOutput
	ToInstanceConnectModeOutputWithContext(context.Context) InstanceConnectModeOutput
}

InstanceConnectModeInput is an input type that accepts InstanceConnectModeArgs and InstanceConnectModeOutput values. You can construct a concrete instance of `InstanceConnectModeInput` via:

InstanceConnectModeArgs{...}

type InstanceConnectModeOutput added in v0.6.0

type InstanceConnectModeOutput struct{ *pulumi.OutputState }

func (InstanceConnectModeOutput) ElementType added in v0.6.0

func (InstanceConnectModeOutput) ElementType() reflect.Type

func (InstanceConnectModeOutput) ToInstanceConnectModeOutput added in v0.6.0

func (o InstanceConnectModeOutput) ToInstanceConnectModeOutput() InstanceConnectModeOutput

func (InstanceConnectModeOutput) ToInstanceConnectModeOutputWithContext added in v0.6.0

func (o InstanceConnectModeOutput) ToInstanceConnectModeOutputWithContext(ctx context.Context) InstanceConnectModeOutput

func (InstanceConnectModeOutput) ToInstanceConnectModePtrOutput added in v0.6.0

func (o InstanceConnectModeOutput) ToInstanceConnectModePtrOutput() InstanceConnectModePtrOutput

func (InstanceConnectModeOutput) ToInstanceConnectModePtrOutputWithContext added in v0.6.0

func (o InstanceConnectModeOutput) ToInstanceConnectModePtrOutputWithContext(ctx context.Context) InstanceConnectModePtrOutput

func (InstanceConnectModeOutput) ToStringOutput added in v0.6.0

func (o InstanceConnectModeOutput) ToStringOutput() pulumi.StringOutput

func (InstanceConnectModeOutput) ToStringOutputWithContext added in v0.6.0

func (o InstanceConnectModeOutput) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (InstanceConnectModeOutput) ToStringPtrOutput added in v0.6.0

func (o InstanceConnectModeOutput) ToStringPtrOutput() pulumi.StringPtrOutput

func (InstanceConnectModeOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o InstanceConnectModeOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type InstanceConnectModePtrInput added in v0.6.0

type InstanceConnectModePtrInput interface {
	pulumi.Input

	ToInstanceConnectModePtrOutput() InstanceConnectModePtrOutput
	ToInstanceConnectModePtrOutputWithContext(context.Context) InstanceConnectModePtrOutput
}

func InstanceConnectModePtr added in v0.6.0

func InstanceConnectModePtr(v string) InstanceConnectModePtrInput

type InstanceConnectModePtrOutput added in v0.6.0

type InstanceConnectModePtrOutput struct{ *pulumi.OutputState }

func (InstanceConnectModePtrOutput) Elem added in v0.6.0

func (InstanceConnectModePtrOutput) ElementType added in v0.6.0

func (InstanceConnectModePtrOutput) ToInstanceConnectModePtrOutput added in v0.6.0

func (o InstanceConnectModePtrOutput) ToInstanceConnectModePtrOutput() InstanceConnectModePtrOutput

func (InstanceConnectModePtrOutput) ToInstanceConnectModePtrOutputWithContext added in v0.6.0

func (o InstanceConnectModePtrOutput) ToInstanceConnectModePtrOutputWithContext(ctx context.Context) InstanceConnectModePtrOutput

func (InstanceConnectModePtrOutput) ToStringPtrOutput added in v0.6.0

func (o InstanceConnectModePtrOutput) ToStringPtrOutput() pulumi.StringPtrOutput

func (InstanceConnectModePtrOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o InstanceConnectModePtrOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type InstanceInput

type InstanceInput interface {
	pulumi.Input

	ToInstanceOutput() InstanceOutput
	ToInstanceOutputWithContext(ctx context.Context) InstanceOutput
}

type InstanceOutput

type InstanceOutput struct{ *pulumi.OutputState }

func (InstanceOutput) AlternativeLocationId added in v0.19.0

func (o InstanceOutput) AlternativeLocationId() pulumi.StringOutput

Optional. If specified, at least one node will be provisioned in this zone in addition to the zone specified in location_id. Only applicable to standard tier. If provided, it must be a different zone from the one provided in [location_id]. Additional nodes beyond the first 2 will be placed in zones selected by the service.

func (InstanceOutput) AuthEnabled added in v0.19.0

func (o InstanceOutput) AuthEnabled() pulumi.BoolOutput

Optional. Indicates whether OSS Redis AUTH is enabled for the instance. If set to "true" AUTH is enabled on the instance. Default value is "false" meaning AUTH is disabled.

func (InstanceOutput) AuthorizedNetwork added in v0.19.0

func (o InstanceOutput) AuthorizedNetwork() pulumi.StringOutput

Optional. The full name of the Google Compute Engine [network](https://cloud.google.com/vpc/docs/vpc) to which the instance is connected. If left unspecified, the `default` network will be used.

func (InstanceOutput) AvailableMaintenanceVersions added in v0.21.0

func (o InstanceOutput) AvailableMaintenanceVersions() pulumi.StringArrayOutput

Optional. The available maintenance versions that an instance could update to.

func (InstanceOutput) ConnectMode added in v0.19.0

func (o InstanceOutput) ConnectMode() pulumi.StringOutput

Optional. The network connect mode of the Redis instance. If not provided, the connect mode defaults to DIRECT_PEERING.

func (InstanceOutput) CreateTime added in v0.19.0

func (o InstanceOutput) CreateTime() pulumi.StringOutput

The time the instance was created.

func (InstanceOutput) CurrentLocationId added in v0.19.0

func (o InstanceOutput) CurrentLocationId() pulumi.StringOutput

The current zone where the Redis primary node is located. In basic tier, this will always be the same as [location_id]. In standard tier, this can be the zone of any node in the instance.

func (InstanceOutput) CustomerManagedKey added in v0.21.0

func (o InstanceOutput) CustomerManagedKey() pulumi.StringOutput

Optional. The KMS key reference that the customer provides when trying to create the instance.

func (InstanceOutput) DisplayName added in v0.19.0

func (o InstanceOutput) DisplayName() pulumi.StringOutput

An arbitrary and optional user-provided name for the instance.

func (InstanceOutput) ElementType

func (InstanceOutput) ElementType() reflect.Type

func (InstanceOutput) Host added in v0.19.0

Hostname or IP address of the exposed Redis endpoint used by clients to connect to the service.

func (InstanceOutput) InstanceId added in v0.21.0

func (o InstanceOutput) InstanceId() pulumi.StringOutput

Required. The logical name of the Redis instance in the customer project with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-40 characters. * Must end with a number or a letter. * Must be unique within the customer project / location

func (InstanceOutput) Labels added in v0.19.0

Resource labels to represent user provided metadata

func (InstanceOutput) Location added in v0.19.0

func (o InstanceOutput) Location() pulumi.StringOutput

func (InstanceOutput) MaintenancePolicy added in v0.19.0

func (o InstanceOutput) MaintenancePolicy() MaintenancePolicyResponseOutput

Optional. The maintenance policy for the instance. If not provided, maintenance events can be performed at any time.

func (InstanceOutput) MaintenanceSchedule added in v0.19.0

func (o InstanceOutput) MaintenanceSchedule() MaintenanceScheduleResponseOutput

Date and time of upcoming maintenance events which have been scheduled.

func (InstanceOutput) MaintenanceVersion added in v0.19.0

func (o InstanceOutput) MaintenanceVersion() pulumi.StringOutput

Optional. The self service update maintenance version. The version is date based such as "20210712_00_00".

func (InstanceOutput) MemorySizeGb added in v0.19.0

func (o InstanceOutput) MemorySizeGb() pulumi.IntOutput

Redis memory size in GiB.

func (InstanceOutput) Name added in v0.19.0

Unique name of the resource in this scope including project and location using the form: `projects/{project_id}/locations/{location_id}/instances/{instance_id}` Note: Redis instances are managed and addressed at regional level so location_id here refers to a GCP region; however, users may choose which specific zone (or collection of zones for cross-zone instances) an instance should be provisioned in. Refer to location_id and alternative_location_id fields for more details.

func (InstanceOutput) Nodes added in v0.19.0

Info per node.

func (InstanceOutput) PersistenceConfig added in v0.19.0

func (o InstanceOutput) PersistenceConfig() PersistenceConfigResponseOutput

Optional. Persistence configuration parameters

func (InstanceOutput) PersistenceIamIdentity added in v0.19.0

func (o InstanceOutput) PersistenceIamIdentity() pulumi.StringOutput

Cloud IAM identity used by import / export operations to transfer data to/from Cloud Storage. Format is "serviceAccount:". The value may change over time for a given instance so should be checked before each import/export operation.

func (InstanceOutput) Port added in v0.19.0

func (o InstanceOutput) Port() pulumi.IntOutput

The port number of the exposed Redis endpoint.

func (InstanceOutput) Project added in v0.21.0

func (o InstanceOutput) Project() pulumi.StringOutput

func (InstanceOutput) ReadEndpoint added in v0.19.0

func (o InstanceOutput) ReadEndpoint() pulumi.StringOutput

Hostname or IP address of the exposed readonly Redis endpoint. Standard tier only. Targets all healthy replica nodes in instance. Replication is asynchronous and replica nodes will exhibit some lag behind the primary. Write requests must target 'host'.

func (InstanceOutput) ReadEndpointPort added in v0.19.0

func (o InstanceOutput) ReadEndpointPort() pulumi.IntOutput

The port number of the exposed readonly redis endpoint. Standard tier only. Write requests should target 'port'.

func (InstanceOutput) ReadReplicasMode added in v0.19.0

func (o InstanceOutput) ReadReplicasMode() pulumi.StringOutput

Optional. Read replicas mode for the instance. Defaults to READ_REPLICAS_DISABLED.

func (InstanceOutput) RedisConfigs added in v0.19.0

func (o InstanceOutput) RedisConfigs() pulumi.StringMapOutput

Optional. Redis configuration parameters, according to http://redis.io/topics/config. Currently, the only supported parameters are: Redis version 3.2 and newer: * maxmemory-policy * notify-keyspace-events Redis version 4.0 and newer: * activedefrag * lfu-decay-time * lfu-log-factor * maxmemory-gb Redis version 5.0 and newer: * stream-node-max-bytes * stream-node-max-entries

func (InstanceOutput) RedisVersion added in v0.19.0

func (o InstanceOutput) RedisVersion() pulumi.StringOutput

Optional. The version of Redis software. If not provided, latest supported version will be used. Currently, the supported values are: * `REDIS_3_2` for Redis 3.2 compatibility * `REDIS_4_0` for Redis 4.0 compatibility (default) * `REDIS_5_0` for Redis 5.0 compatibility * `REDIS_6_X` for Redis 6.x compatibility

func (InstanceOutput) ReplicaCount added in v0.19.0

func (o InstanceOutput) ReplicaCount() pulumi.IntOutput

Optional. The number of replica nodes. The valid range for the Standard Tier with read replicas enabled is [1-5] and defaults to 2. If read replicas are not enabled for a Standard Tier instance, the only valid value is 1 and the default is 1. The valid value for basic tier is 0 and the default is also 0.

func (InstanceOutput) ReservedIpRange added in v0.19.0

func (o InstanceOutput) ReservedIpRange() pulumi.StringOutput

Optional. For DIRECT_PEERING mode, the CIDR range of internal addresses that are reserved for this instance. Range must be unique and non-overlapping with existing subnets in an authorized network. For PRIVATE_SERVICE_ACCESS mode, the name of one allocated IP address ranges associated with this private service access connection. If not provided, the service will choose an unused /29 block, for example, 10.0.0.0/29 or 192.168.0.0/29. For READ_REPLICAS_ENABLED the default block size is /28.

func (InstanceOutput) SatisfiesPzs added in v0.32.0

func (o InstanceOutput) SatisfiesPzs() pulumi.BoolOutput

Optional. Output only. Reserved for future use. Zone Separation compliance state of the instance. Field name and documentation is obfuscated according to go/zs-resource-status.

func (InstanceOutput) SecondaryIpRange added in v0.19.0

func (o InstanceOutput) SecondaryIpRange() pulumi.StringOutput

Optional. Additional IP range for node placement. Required when enabling read replicas on an existing instance. For DIRECT_PEERING mode value must be a CIDR range of size /28, or "auto". For PRIVATE_SERVICE_ACCESS mode value must be the name of an allocated address range associated with the private service access connection, or "auto".

func (InstanceOutput) ServerCaCerts added in v0.19.0

List of server CA certificates for the instance.

func (InstanceOutput) State added in v0.19.0

The current state of this instance.

func (InstanceOutput) StatusMessage added in v0.19.0

func (o InstanceOutput) StatusMessage() pulumi.StringOutput

Additional information about the current status of this instance, if available.

func (InstanceOutput) SuspensionReasons added in v0.21.0

func (o InstanceOutput) SuspensionReasons() pulumi.StringArrayOutput

Optional. reasons that causes instance in "SUSPENDED" state.

func (InstanceOutput) Tier added in v0.19.0

The service tier of the instance.

func (InstanceOutput) ToInstanceOutput

func (o InstanceOutput) ToInstanceOutput() InstanceOutput

func (InstanceOutput) ToInstanceOutputWithContext

func (o InstanceOutput) ToInstanceOutputWithContext(ctx context.Context) InstanceOutput

func (InstanceOutput) TransitEncryptionMode added in v0.19.0

func (o InstanceOutput) TransitEncryptionMode() pulumi.StringOutput

Optional. The TLS mode of the Redis instance. If not provided, TLS is disabled for the instance.

type InstanceReadReplicasMode added in v0.9.0

type InstanceReadReplicasMode string

Optional. Read replicas mode for the instance. Defaults to READ_REPLICAS_DISABLED.

func (InstanceReadReplicasMode) ElementType added in v0.9.0

func (InstanceReadReplicasMode) ElementType() reflect.Type

func (InstanceReadReplicasMode) ToInstanceReadReplicasModeOutput added in v0.9.0

func (e InstanceReadReplicasMode) ToInstanceReadReplicasModeOutput() InstanceReadReplicasModeOutput

func (InstanceReadReplicasMode) ToInstanceReadReplicasModeOutputWithContext added in v0.9.0

func (e InstanceReadReplicasMode) ToInstanceReadReplicasModeOutputWithContext(ctx context.Context) InstanceReadReplicasModeOutput

func (InstanceReadReplicasMode) ToInstanceReadReplicasModePtrOutput added in v0.9.0

func (e InstanceReadReplicasMode) ToInstanceReadReplicasModePtrOutput() InstanceReadReplicasModePtrOutput

func (InstanceReadReplicasMode) ToInstanceReadReplicasModePtrOutputWithContext added in v0.9.0

func (e InstanceReadReplicasMode) ToInstanceReadReplicasModePtrOutputWithContext(ctx context.Context) InstanceReadReplicasModePtrOutput

func (InstanceReadReplicasMode) ToStringOutput added in v0.9.0

func (e InstanceReadReplicasMode) ToStringOutput() pulumi.StringOutput

func (InstanceReadReplicasMode) ToStringOutputWithContext added in v0.9.0

func (e InstanceReadReplicasMode) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (InstanceReadReplicasMode) ToStringPtrOutput added in v0.9.0

func (e InstanceReadReplicasMode) ToStringPtrOutput() pulumi.StringPtrOutput

func (InstanceReadReplicasMode) ToStringPtrOutputWithContext added in v0.9.0

func (e InstanceReadReplicasMode) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type InstanceReadReplicasModeInput added in v0.9.0

type InstanceReadReplicasModeInput interface {
	pulumi.Input

	ToInstanceReadReplicasModeOutput() InstanceReadReplicasModeOutput
	ToInstanceReadReplicasModeOutputWithContext(context.Context) InstanceReadReplicasModeOutput
}

InstanceReadReplicasModeInput is an input type that accepts InstanceReadReplicasModeArgs and InstanceReadReplicasModeOutput values. You can construct a concrete instance of `InstanceReadReplicasModeInput` via:

InstanceReadReplicasModeArgs{...}

type InstanceReadReplicasModeOutput added in v0.9.0

type InstanceReadReplicasModeOutput struct{ *pulumi.OutputState }

func (InstanceReadReplicasModeOutput) ElementType added in v0.9.0

func (InstanceReadReplicasModeOutput) ToInstanceReadReplicasModeOutput added in v0.9.0

func (o InstanceReadReplicasModeOutput) ToInstanceReadReplicasModeOutput() InstanceReadReplicasModeOutput

func (InstanceReadReplicasModeOutput) ToInstanceReadReplicasModeOutputWithContext added in v0.9.0

func (o InstanceReadReplicasModeOutput) ToInstanceReadReplicasModeOutputWithContext(ctx context.Context) InstanceReadReplicasModeOutput

func (InstanceReadReplicasModeOutput) ToInstanceReadReplicasModePtrOutput added in v0.9.0

func (o InstanceReadReplicasModeOutput) ToInstanceReadReplicasModePtrOutput() InstanceReadReplicasModePtrOutput

func (InstanceReadReplicasModeOutput) ToInstanceReadReplicasModePtrOutputWithContext added in v0.9.0

func (o InstanceReadReplicasModeOutput) ToInstanceReadReplicasModePtrOutputWithContext(ctx context.Context) InstanceReadReplicasModePtrOutput

func (InstanceReadReplicasModeOutput) ToStringOutput added in v0.9.0

func (InstanceReadReplicasModeOutput) ToStringOutputWithContext added in v0.9.0

func (o InstanceReadReplicasModeOutput) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (InstanceReadReplicasModeOutput) ToStringPtrOutput added in v0.9.0

func (InstanceReadReplicasModeOutput) ToStringPtrOutputWithContext added in v0.9.0

func (o InstanceReadReplicasModeOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type InstanceReadReplicasModePtrInput added in v0.9.0

type InstanceReadReplicasModePtrInput interface {
	pulumi.Input

	ToInstanceReadReplicasModePtrOutput() InstanceReadReplicasModePtrOutput
	ToInstanceReadReplicasModePtrOutputWithContext(context.Context) InstanceReadReplicasModePtrOutput
}

func InstanceReadReplicasModePtr added in v0.9.0

func InstanceReadReplicasModePtr(v string) InstanceReadReplicasModePtrInput

type InstanceReadReplicasModePtrOutput added in v0.9.0

type InstanceReadReplicasModePtrOutput struct{ *pulumi.OutputState }

func (InstanceReadReplicasModePtrOutput) Elem added in v0.9.0

func (InstanceReadReplicasModePtrOutput) ElementType added in v0.9.0

func (InstanceReadReplicasModePtrOutput) ToInstanceReadReplicasModePtrOutput added in v0.9.0

func (o InstanceReadReplicasModePtrOutput) ToInstanceReadReplicasModePtrOutput() InstanceReadReplicasModePtrOutput

func (InstanceReadReplicasModePtrOutput) ToInstanceReadReplicasModePtrOutputWithContext added in v0.9.0

func (o InstanceReadReplicasModePtrOutput) ToInstanceReadReplicasModePtrOutputWithContext(ctx context.Context) InstanceReadReplicasModePtrOutput

func (InstanceReadReplicasModePtrOutput) ToStringPtrOutput added in v0.9.0

func (InstanceReadReplicasModePtrOutput) ToStringPtrOutputWithContext added in v0.9.0

func (o InstanceReadReplicasModePtrOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type InstanceState

type InstanceState struct {
}

func (InstanceState) ElementType

func (InstanceState) ElementType() reflect.Type

type InstanceSuspensionReasonsItem added in v0.21.0

type InstanceSuspensionReasonsItem string

func (InstanceSuspensionReasonsItem) ElementType added in v0.21.0

func (InstanceSuspensionReasonsItem) ToInstanceSuspensionReasonsItemOutput added in v0.21.0

func (e InstanceSuspensionReasonsItem) ToInstanceSuspensionReasonsItemOutput() InstanceSuspensionReasonsItemOutput

func (InstanceSuspensionReasonsItem) ToInstanceSuspensionReasonsItemOutputWithContext added in v0.21.0

func (e InstanceSuspensionReasonsItem) ToInstanceSuspensionReasonsItemOutputWithContext(ctx context.Context) InstanceSuspensionReasonsItemOutput

func (InstanceSuspensionReasonsItem) ToInstanceSuspensionReasonsItemPtrOutput added in v0.21.0

func (e InstanceSuspensionReasonsItem) ToInstanceSuspensionReasonsItemPtrOutput() InstanceSuspensionReasonsItemPtrOutput

func (InstanceSuspensionReasonsItem) ToInstanceSuspensionReasonsItemPtrOutputWithContext added in v0.21.0

func (e InstanceSuspensionReasonsItem) ToInstanceSuspensionReasonsItemPtrOutputWithContext(ctx context.Context) InstanceSuspensionReasonsItemPtrOutput

func (InstanceSuspensionReasonsItem) ToStringOutput added in v0.21.0

func (InstanceSuspensionReasonsItem) ToStringOutputWithContext added in v0.21.0

func (e InstanceSuspensionReasonsItem) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (InstanceSuspensionReasonsItem) ToStringPtrOutput added in v0.21.0

func (InstanceSuspensionReasonsItem) ToStringPtrOutputWithContext added in v0.21.0

func (e InstanceSuspensionReasonsItem) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type InstanceSuspensionReasonsItemArray added in v0.21.0

type InstanceSuspensionReasonsItemArray []InstanceSuspensionReasonsItem

func (InstanceSuspensionReasonsItemArray) ElementType added in v0.21.0

func (InstanceSuspensionReasonsItemArray) ToInstanceSuspensionReasonsItemArrayOutput added in v0.21.0

func (i InstanceSuspensionReasonsItemArray) ToInstanceSuspensionReasonsItemArrayOutput() InstanceSuspensionReasonsItemArrayOutput

func (InstanceSuspensionReasonsItemArray) ToInstanceSuspensionReasonsItemArrayOutputWithContext added in v0.21.0

func (i InstanceSuspensionReasonsItemArray) ToInstanceSuspensionReasonsItemArrayOutputWithContext(ctx context.Context) InstanceSuspensionReasonsItemArrayOutput

type InstanceSuspensionReasonsItemArrayInput added in v0.21.0

type InstanceSuspensionReasonsItemArrayInput interface {
	pulumi.Input

	ToInstanceSuspensionReasonsItemArrayOutput() InstanceSuspensionReasonsItemArrayOutput
	ToInstanceSuspensionReasonsItemArrayOutputWithContext(context.Context) InstanceSuspensionReasonsItemArrayOutput
}

InstanceSuspensionReasonsItemArrayInput is an input type that accepts InstanceSuspensionReasonsItemArray and InstanceSuspensionReasonsItemArrayOutput values. You can construct a concrete instance of `InstanceSuspensionReasonsItemArrayInput` via:

InstanceSuspensionReasonsItemArray{ InstanceSuspensionReasonsItemArgs{...} }

type InstanceSuspensionReasonsItemArrayOutput added in v0.21.0

type InstanceSuspensionReasonsItemArrayOutput struct{ *pulumi.OutputState }

func (InstanceSuspensionReasonsItemArrayOutput) ElementType added in v0.21.0

func (InstanceSuspensionReasonsItemArrayOutput) Index added in v0.21.0

func (InstanceSuspensionReasonsItemArrayOutput) ToInstanceSuspensionReasonsItemArrayOutput added in v0.21.0

func (o InstanceSuspensionReasonsItemArrayOutput) ToInstanceSuspensionReasonsItemArrayOutput() InstanceSuspensionReasonsItemArrayOutput

func (InstanceSuspensionReasonsItemArrayOutput) ToInstanceSuspensionReasonsItemArrayOutputWithContext added in v0.21.0

func (o InstanceSuspensionReasonsItemArrayOutput) ToInstanceSuspensionReasonsItemArrayOutputWithContext(ctx context.Context) InstanceSuspensionReasonsItemArrayOutput

type InstanceSuspensionReasonsItemInput added in v0.21.0

type InstanceSuspensionReasonsItemInput interface {
	pulumi.Input

	ToInstanceSuspensionReasonsItemOutput() InstanceSuspensionReasonsItemOutput
	ToInstanceSuspensionReasonsItemOutputWithContext(context.Context) InstanceSuspensionReasonsItemOutput
}

InstanceSuspensionReasonsItemInput is an input type that accepts InstanceSuspensionReasonsItemArgs and InstanceSuspensionReasonsItemOutput values. You can construct a concrete instance of `InstanceSuspensionReasonsItemInput` via:

InstanceSuspensionReasonsItemArgs{...}

type InstanceSuspensionReasonsItemOutput added in v0.21.0

type InstanceSuspensionReasonsItemOutput struct{ *pulumi.OutputState }

func (InstanceSuspensionReasonsItemOutput) ElementType added in v0.21.0

func (InstanceSuspensionReasonsItemOutput) ToInstanceSuspensionReasonsItemOutput added in v0.21.0

func (o InstanceSuspensionReasonsItemOutput) ToInstanceSuspensionReasonsItemOutput() InstanceSuspensionReasonsItemOutput

func (InstanceSuspensionReasonsItemOutput) ToInstanceSuspensionReasonsItemOutputWithContext added in v0.21.0

func (o InstanceSuspensionReasonsItemOutput) ToInstanceSuspensionReasonsItemOutputWithContext(ctx context.Context) InstanceSuspensionReasonsItemOutput

func (InstanceSuspensionReasonsItemOutput) ToInstanceSuspensionReasonsItemPtrOutput added in v0.21.0

func (o InstanceSuspensionReasonsItemOutput) ToInstanceSuspensionReasonsItemPtrOutput() InstanceSuspensionReasonsItemPtrOutput

func (InstanceSuspensionReasonsItemOutput) ToInstanceSuspensionReasonsItemPtrOutputWithContext added in v0.21.0

func (o InstanceSuspensionReasonsItemOutput) ToInstanceSuspensionReasonsItemPtrOutputWithContext(ctx context.Context) InstanceSuspensionReasonsItemPtrOutput

func (InstanceSuspensionReasonsItemOutput) ToStringOutput added in v0.21.0

func (InstanceSuspensionReasonsItemOutput) ToStringOutputWithContext added in v0.21.0

func (o InstanceSuspensionReasonsItemOutput) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (InstanceSuspensionReasonsItemOutput) ToStringPtrOutput added in v0.21.0

func (InstanceSuspensionReasonsItemOutput) ToStringPtrOutputWithContext added in v0.21.0

func (o InstanceSuspensionReasonsItemOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type InstanceSuspensionReasonsItemPtrInput added in v0.21.0

type InstanceSuspensionReasonsItemPtrInput interface {
	pulumi.Input

	ToInstanceSuspensionReasonsItemPtrOutput() InstanceSuspensionReasonsItemPtrOutput
	ToInstanceSuspensionReasonsItemPtrOutputWithContext(context.Context) InstanceSuspensionReasonsItemPtrOutput
}

func InstanceSuspensionReasonsItemPtr added in v0.21.0

func InstanceSuspensionReasonsItemPtr(v string) InstanceSuspensionReasonsItemPtrInput

type InstanceSuspensionReasonsItemPtrOutput added in v0.21.0

type InstanceSuspensionReasonsItemPtrOutput struct{ *pulumi.OutputState }

func (InstanceSuspensionReasonsItemPtrOutput) Elem added in v0.21.0

func (InstanceSuspensionReasonsItemPtrOutput) ElementType added in v0.21.0

func (InstanceSuspensionReasonsItemPtrOutput) ToInstanceSuspensionReasonsItemPtrOutput added in v0.21.0

func (o InstanceSuspensionReasonsItemPtrOutput) ToInstanceSuspensionReasonsItemPtrOutput() InstanceSuspensionReasonsItemPtrOutput

func (InstanceSuspensionReasonsItemPtrOutput) ToInstanceSuspensionReasonsItemPtrOutputWithContext added in v0.21.0

func (o InstanceSuspensionReasonsItemPtrOutput) ToInstanceSuspensionReasonsItemPtrOutputWithContext(ctx context.Context) InstanceSuspensionReasonsItemPtrOutput

func (InstanceSuspensionReasonsItemPtrOutput) ToStringPtrOutput added in v0.21.0

func (InstanceSuspensionReasonsItemPtrOutput) ToStringPtrOutputWithContext added in v0.21.0

func (o InstanceSuspensionReasonsItemPtrOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type InstanceTier added in v0.4.0

type InstanceTier string

Required. The service tier of the instance.

func (InstanceTier) ElementType added in v0.4.0

func (InstanceTier) ElementType() reflect.Type

func (InstanceTier) ToInstanceTierOutput added in v0.6.0

func (e InstanceTier) ToInstanceTierOutput() InstanceTierOutput

func (InstanceTier) ToInstanceTierOutputWithContext added in v0.6.0

func (e InstanceTier) ToInstanceTierOutputWithContext(ctx context.Context) InstanceTierOutput

func (InstanceTier) ToInstanceTierPtrOutput added in v0.6.0

func (e InstanceTier) ToInstanceTierPtrOutput() InstanceTierPtrOutput

func (InstanceTier) ToInstanceTierPtrOutputWithContext added in v0.6.0

func (e InstanceTier) ToInstanceTierPtrOutputWithContext(ctx context.Context) InstanceTierPtrOutput

func (InstanceTier) ToStringOutput added in v0.4.0

func (e InstanceTier) ToStringOutput() pulumi.StringOutput

func (InstanceTier) ToStringOutputWithContext added in v0.4.0

func (e InstanceTier) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (InstanceTier) ToStringPtrOutput added in v0.4.0

func (e InstanceTier) ToStringPtrOutput() pulumi.StringPtrOutput

func (InstanceTier) ToStringPtrOutputWithContext added in v0.4.0

func (e InstanceTier) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type InstanceTierInput added in v0.6.0

type InstanceTierInput interface {
	pulumi.Input

	ToInstanceTierOutput() InstanceTierOutput
	ToInstanceTierOutputWithContext(context.Context) InstanceTierOutput
}

InstanceTierInput is an input type that accepts InstanceTierArgs and InstanceTierOutput values. You can construct a concrete instance of `InstanceTierInput` via:

InstanceTierArgs{...}

type InstanceTierOutput added in v0.6.0

type InstanceTierOutput struct{ *pulumi.OutputState }

func (InstanceTierOutput) ElementType added in v0.6.0

func (InstanceTierOutput) ElementType() reflect.Type

func (InstanceTierOutput) ToInstanceTierOutput added in v0.6.0

func (o InstanceTierOutput) ToInstanceTierOutput() InstanceTierOutput

func (InstanceTierOutput) ToInstanceTierOutputWithContext added in v0.6.0

func (o InstanceTierOutput) ToInstanceTierOutputWithContext(ctx context.Context) InstanceTierOutput

func (InstanceTierOutput) ToInstanceTierPtrOutput added in v0.6.0

func (o InstanceTierOutput) ToInstanceTierPtrOutput() InstanceTierPtrOutput

func (InstanceTierOutput) ToInstanceTierPtrOutputWithContext added in v0.6.0

func (o InstanceTierOutput) ToInstanceTierPtrOutputWithContext(ctx context.Context) InstanceTierPtrOutput

func (InstanceTierOutput) ToStringOutput added in v0.6.0

func (o InstanceTierOutput) ToStringOutput() pulumi.StringOutput

func (InstanceTierOutput) ToStringOutputWithContext added in v0.6.0

func (o InstanceTierOutput) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (InstanceTierOutput) ToStringPtrOutput added in v0.6.0

func (o InstanceTierOutput) ToStringPtrOutput() pulumi.StringPtrOutput

func (InstanceTierOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o InstanceTierOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type InstanceTierPtrInput added in v0.6.0

type InstanceTierPtrInput interface {
	pulumi.Input

	ToInstanceTierPtrOutput() InstanceTierPtrOutput
	ToInstanceTierPtrOutputWithContext(context.Context) InstanceTierPtrOutput
}

func InstanceTierPtr added in v0.6.0

func InstanceTierPtr(v string) InstanceTierPtrInput

type InstanceTierPtrOutput added in v0.6.0

type InstanceTierPtrOutput struct{ *pulumi.OutputState }

func (InstanceTierPtrOutput) Elem added in v0.6.0

func (InstanceTierPtrOutput) ElementType added in v0.6.0

func (InstanceTierPtrOutput) ElementType() reflect.Type

func (InstanceTierPtrOutput) ToInstanceTierPtrOutput added in v0.6.0

func (o InstanceTierPtrOutput) ToInstanceTierPtrOutput() InstanceTierPtrOutput

func (InstanceTierPtrOutput) ToInstanceTierPtrOutputWithContext added in v0.6.0

func (o InstanceTierPtrOutput) ToInstanceTierPtrOutputWithContext(ctx context.Context) InstanceTierPtrOutput

func (InstanceTierPtrOutput) ToStringPtrOutput added in v0.6.0

func (o InstanceTierPtrOutput) ToStringPtrOutput() pulumi.StringPtrOutput

func (InstanceTierPtrOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o InstanceTierPtrOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type InstanceTransitEncryptionMode added in v0.4.0

type InstanceTransitEncryptionMode string

Optional. The TLS mode of the Redis instance. If not provided, TLS is disabled for the instance.

func (InstanceTransitEncryptionMode) ElementType added in v0.4.0

func (InstanceTransitEncryptionMode) ToInstanceTransitEncryptionModeOutput added in v0.6.0

func (e InstanceTransitEncryptionMode) ToInstanceTransitEncryptionModeOutput() InstanceTransitEncryptionModeOutput

func (InstanceTransitEncryptionMode) ToInstanceTransitEncryptionModeOutputWithContext added in v0.6.0

func (e InstanceTransitEncryptionMode) ToInstanceTransitEncryptionModeOutputWithContext(ctx context.Context) InstanceTransitEncryptionModeOutput

func (InstanceTransitEncryptionMode) ToInstanceTransitEncryptionModePtrOutput added in v0.6.0

func (e InstanceTransitEncryptionMode) ToInstanceTransitEncryptionModePtrOutput() InstanceTransitEncryptionModePtrOutput

func (InstanceTransitEncryptionMode) ToInstanceTransitEncryptionModePtrOutputWithContext added in v0.6.0

func (e InstanceTransitEncryptionMode) ToInstanceTransitEncryptionModePtrOutputWithContext(ctx context.Context) InstanceTransitEncryptionModePtrOutput

func (InstanceTransitEncryptionMode) ToStringOutput added in v0.4.0

func (InstanceTransitEncryptionMode) ToStringOutputWithContext added in v0.4.0

func (e InstanceTransitEncryptionMode) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (InstanceTransitEncryptionMode) ToStringPtrOutput added in v0.4.0

func (InstanceTransitEncryptionMode) ToStringPtrOutputWithContext added in v0.4.0

func (e InstanceTransitEncryptionMode) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type InstanceTransitEncryptionModeInput added in v0.6.0

type InstanceTransitEncryptionModeInput interface {
	pulumi.Input

	ToInstanceTransitEncryptionModeOutput() InstanceTransitEncryptionModeOutput
	ToInstanceTransitEncryptionModeOutputWithContext(context.Context) InstanceTransitEncryptionModeOutput
}

InstanceTransitEncryptionModeInput is an input type that accepts InstanceTransitEncryptionModeArgs and InstanceTransitEncryptionModeOutput values. You can construct a concrete instance of `InstanceTransitEncryptionModeInput` via:

InstanceTransitEncryptionModeArgs{...}

type InstanceTransitEncryptionModeOutput added in v0.6.0

type InstanceTransitEncryptionModeOutput struct{ *pulumi.OutputState }

func (InstanceTransitEncryptionModeOutput) ElementType added in v0.6.0

func (InstanceTransitEncryptionModeOutput) ToInstanceTransitEncryptionModeOutput added in v0.6.0

func (o InstanceTransitEncryptionModeOutput) ToInstanceTransitEncryptionModeOutput() InstanceTransitEncryptionModeOutput

func (InstanceTransitEncryptionModeOutput) ToInstanceTransitEncryptionModeOutputWithContext added in v0.6.0

func (o InstanceTransitEncryptionModeOutput) ToInstanceTransitEncryptionModeOutputWithContext(ctx context.Context) InstanceTransitEncryptionModeOutput

func (InstanceTransitEncryptionModeOutput) ToInstanceTransitEncryptionModePtrOutput added in v0.6.0

func (o InstanceTransitEncryptionModeOutput) ToInstanceTransitEncryptionModePtrOutput() InstanceTransitEncryptionModePtrOutput

func (InstanceTransitEncryptionModeOutput) ToInstanceTransitEncryptionModePtrOutputWithContext added in v0.6.0

func (o InstanceTransitEncryptionModeOutput) ToInstanceTransitEncryptionModePtrOutputWithContext(ctx context.Context) InstanceTransitEncryptionModePtrOutput

func (InstanceTransitEncryptionModeOutput) ToStringOutput added in v0.6.0

func (InstanceTransitEncryptionModeOutput) ToStringOutputWithContext added in v0.6.0

func (o InstanceTransitEncryptionModeOutput) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (InstanceTransitEncryptionModeOutput) ToStringPtrOutput added in v0.6.0

func (InstanceTransitEncryptionModeOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o InstanceTransitEncryptionModeOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type InstanceTransitEncryptionModePtrInput added in v0.6.0

type InstanceTransitEncryptionModePtrInput interface {
	pulumi.Input

	ToInstanceTransitEncryptionModePtrOutput() InstanceTransitEncryptionModePtrOutput
	ToInstanceTransitEncryptionModePtrOutputWithContext(context.Context) InstanceTransitEncryptionModePtrOutput
}

func InstanceTransitEncryptionModePtr added in v0.6.0

func InstanceTransitEncryptionModePtr(v string) InstanceTransitEncryptionModePtrInput

type InstanceTransitEncryptionModePtrOutput added in v0.6.0

type InstanceTransitEncryptionModePtrOutput struct{ *pulumi.OutputState }

func (InstanceTransitEncryptionModePtrOutput) Elem added in v0.6.0

func (InstanceTransitEncryptionModePtrOutput) ElementType added in v0.6.0

func (InstanceTransitEncryptionModePtrOutput) ToInstanceTransitEncryptionModePtrOutput added in v0.6.0

func (o InstanceTransitEncryptionModePtrOutput) ToInstanceTransitEncryptionModePtrOutput() InstanceTransitEncryptionModePtrOutput

func (InstanceTransitEncryptionModePtrOutput) ToInstanceTransitEncryptionModePtrOutputWithContext added in v0.6.0

func (o InstanceTransitEncryptionModePtrOutput) ToInstanceTransitEncryptionModePtrOutputWithContext(ctx context.Context) InstanceTransitEncryptionModePtrOutput

func (InstanceTransitEncryptionModePtrOutput) ToStringPtrOutput added in v0.6.0

func (InstanceTransitEncryptionModePtrOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o InstanceTransitEncryptionModePtrOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type LookupClusterArgs added in v0.32.0

type LookupClusterArgs struct {
	ClusterId string  `pulumi:"clusterId"`
	Location  string  `pulumi:"location"`
	Project   *string `pulumi:"project"`
}

type LookupClusterOutputArgs added in v0.32.0

type LookupClusterOutputArgs struct {
	ClusterId pulumi.StringInput    `pulumi:"clusterId"`
	Location  pulumi.StringInput    `pulumi:"location"`
	Project   pulumi.StringPtrInput `pulumi:"project"`
}

func (LookupClusterOutputArgs) ElementType added in v0.32.0

func (LookupClusterOutputArgs) ElementType() reflect.Type

type LookupClusterResult added in v0.32.0

type LookupClusterResult struct {
	// Optional. The authorization mode of the Redis cluster. If not provided, auth feature is disabled for the cluster.
	AuthorizationMode string `pulumi:"authorizationMode"`
	// The timestamp associated with the cluster creation request.
	CreateTime string `pulumi:"createTime"`
	// Endpoints created on each given network, for Redis clients to connect to the cluster. Currently only one discovery endpoint is supported.
	DiscoveryEndpoints []DiscoveryEndpointResponse `pulumi:"discoveryEndpoints"`
	// Unique name of the resource in this scope including project and location using the form: `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}`
	Name string `pulumi:"name"`
	// Each PscConfig configures the consumer network where IPs will be designated to the cluster for client access through Private Service Connect Automation. Currently, only one PscConfig is supported.
	PscConfigs []PscConfigResponse `pulumi:"pscConfigs"`
	// PSC connections for discovery of the cluster topology and accessing the cluster.
	PscConnections []PscConnectionResponse `pulumi:"pscConnections"`
	// Optional. The number of replica nodes per shard.
	ReplicaCount int `pulumi:"replicaCount"`
	// Number of shards for the Redis cluster.
	ShardCount int `pulumi:"shardCount"`
	// Redis memory size in GB for the entire cluster.
	SizeGb int `pulumi:"sizeGb"`
	// The current state of this cluster. Can be CREATING, READY, UPDATING, DELETING and SUSPENDED
	State string `pulumi:"state"`
	// Additional information about the current state of the cluster.
	StateInfo StateInfoResponse `pulumi:"stateInfo"`
	// Optional. The in-transit encryption for the Redis cluster. If not provided, encryption is disabled for the cluster.
	TransitEncryptionMode string `pulumi:"transitEncryptionMode"`
	// System assigned, unique identifier for the cluster.
	Uid string `pulumi:"uid"`
}

func LookupCluster added in v0.32.0

func LookupCluster(ctx *pulumi.Context, args *LookupClusterArgs, opts ...pulumi.InvokeOption) (*LookupClusterResult, error)

Gets the details of a specific Redis cluster.

type LookupClusterResultOutput added in v0.32.0

type LookupClusterResultOutput struct{ *pulumi.OutputState }

func LookupClusterOutput added in v0.32.0

func LookupClusterOutput(ctx *pulumi.Context, args LookupClusterOutputArgs, opts ...pulumi.InvokeOption) LookupClusterResultOutput

func (LookupClusterResultOutput) AuthorizationMode added in v0.32.0

func (o LookupClusterResultOutput) AuthorizationMode() pulumi.StringOutput

Optional. The authorization mode of the Redis cluster. If not provided, auth feature is disabled for the cluster.

func (LookupClusterResultOutput) CreateTime added in v0.32.0

The timestamp associated with the cluster creation request.

func (LookupClusterResultOutput) DiscoveryEndpoints added in v0.32.0

Endpoints created on each given network, for Redis clients to connect to the cluster. Currently only one discovery endpoint is supported.

func (LookupClusterResultOutput) ElementType added in v0.32.0

func (LookupClusterResultOutput) ElementType() reflect.Type

func (LookupClusterResultOutput) Name added in v0.32.0

Unique name of the resource in this scope including project and location using the form: `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}`

func (LookupClusterResultOutput) PscConfigs added in v0.32.0

Each PscConfig configures the consumer network where IPs will be designated to the cluster for client access through Private Service Connect Automation. Currently, only one PscConfig is supported.

func (LookupClusterResultOutput) PscConnections added in v0.32.0

PSC connections for discovery of the cluster topology and accessing the cluster.

func (LookupClusterResultOutput) ReplicaCount added in v0.32.0

func (o LookupClusterResultOutput) ReplicaCount() pulumi.IntOutput

Optional. The number of replica nodes per shard.

func (LookupClusterResultOutput) ShardCount added in v0.32.0

Number of shards for the Redis cluster.

func (LookupClusterResultOutput) SizeGb added in v0.32.0

Redis memory size in GB for the entire cluster.

func (LookupClusterResultOutput) State added in v0.32.0

The current state of this cluster. Can be CREATING, READY, UPDATING, DELETING and SUSPENDED

func (LookupClusterResultOutput) StateInfo added in v0.32.0

Additional information about the current state of the cluster.

func (LookupClusterResultOutput) ToLookupClusterResultOutput added in v0.32.0

func (o LookupClusterResultOutput) ToLookupClusterResultOutput() LookupClusterResultOutput

func (LookupClusterResultOutput) ToLookupClusterResultOutputWithContext added in v0.32.0

func (o LookupClusterResultOutput) ToLookupClusterResultOutputWithContext(ctx context.Context) LookupClusterResultOutput

func (LookupClusterResultOutput) TransitEncryptionMode added in v0.32.0

func (o LookupClusterResultOutput) TransitEncryptionMode() pulumi.StringOutput

Optional. The in-transit encryption for the Redis cluster. If not provided, encryption is disabled for the cluster.

func (LookupClusterResultOutput) Uid added in v0.32.0

System assigned, unique identifier for the cluster.

type LookupInstanceArgs added in v0.4.0

type LookupInstanceArgs struct {
	InstanceId string  `pulumi:"instanceId"`
	Location   string  `pulumi:"location"`
	Project    *string `pulumi:"project"`
}

type LookupInstanceOutputArgs added in v0.8.0

type LookupInstanceOutputArgs struct {
	InstanceId pulumi.StringInput    `pulumi:"instanceId"`
	Location   pulumi.StringInput    `pulumi:"location"`
	Project    pulumi.StringPtrInput `pulumi:"project"`
}

func (LookupInstanceOutputArgs) ElementType added in v0.8.0

func (LookupInstanceOutputArgs) ElementType() reflect.Type

type LookupInstanceResult added in v0.4.0

type LookupInstanceResult struct {
	// Optional. If specified, at least one node will be provisioned in this zone in addition to the zone specified in location_id. Only applicable to standard tier. If provided, it must be a different zone from the one provided in [location_id]. Additional nodes beyond the first 2 will be placed in zones selected by the service.
	AlternativeLocationId string `pulumi:"alternativeLocationId"`
	// Optional. Indicates whether OSS Redis AUTH is enabled for the instance. If set to "true" AUTH is enabled on the instance. Default value is "false" meaning AUTH is disabled.
	AuthEnabled bool `pulumi:"authEnabled"`
	// Optional. The full name of the Google Compute Engine [network](https://cloud.google.com/vpc/docs/vpc) to which the instance is connected. If left unspecified, the `default` network will be used.
	AuthorizedNetwork string `pulumi:"authorizedNetwork"`
	// Optional. The available maintenance versions that an instance could update to.
	AvailableMaintenanceVersions []string `pulumi:"availableMaintenanceVersions"`
	// Optional. The network connect mode of the Redis instance. If not provided, the connect mode defaults to DIRECT_PEERING.
	ConnectMode string `pulumi:"connectMode"`
	// The time the instance was created.
	CreateTime string `pulumi:"createTime"`
	// The current zone where the Redis primary node is located. In basic tier, this will always be the same as [location_id]. In standard tier, this can be the zone of any node in the instance.
	CurrentLocationId string `pulumi:"currentLocationId"`
	// Optional. The KMS key reference that the customer provides when trying to create the instance.
	CustomerManagedKey string `pulumi:"customerManagedKey"`
	// An arbitrary and optional user-provided name for the instance.
	DisplayName string `pulumi:"displayName"`
	// Hostname or IP address of the exposed Redis endpoint used by clients to connect to the service.
	Host string `pulumi:"host"`
	// Resource labels to represent user provided metadata
	Labels map[string]string `pulumi:"labels"`
	// Optional. The zone where the instance will be provisioned. If not provided, the service will choose a zone from the specified region for the instance. For standard tier, additional nodes will be added across multiple zones for protection against zonal failures. If specified, at least one node will be provisioned in this zone.
	Location string `pulumi:"location"`
	// Optional. The maintenance policy for the instance. If not provided, maintenance events can be performed at any time.
	MaintenancePolicy MaintenancePolicyResponse `pulumi:"maintenancePolicy"`
	// Date and time of upcoming maintenance events which have been scheduled.
	MaintenanceSchedule MaintenanceScheduleResponse `pulumi:"maintenanceSchedule"`
	// Optional. The self service update maintenance version. The version is date based such as "20210712_00_00".
	MaintenanceVersion string `pulumi:"maintenanceVersion"`
	// Redis memory size in GiB.
	MemorySizeGb int `pulumi:"memorySizeGb"`
	// Unique name of the resource in this scope including project and location using the form: `projects/{project_id}/locations/{location_id}/instances/{instance_id}` Note: Redis instances are managed and addressed at regional level so location_id here refers to a GCP region; however, users may choose which specific zone (or collection of zones for cross-zone instances) an instance should be provisioned in. Refer to location_id and alternative_location_id fields for more details.
	Name string `pulumi:"name"`
	// Info per node.
	Nodes []NodeInfoResponse `pulumi:"nodes"`
	// Optional. Persistence configuration parameters
	PersistenceConfig PersistenceConfigResponse `pulumi:"persistenceConfig"`
	// Cloud IAM identity used by import / export operations to transfer data to/from Cloud Storage. Format is "serviceAccount:". The value may change over time for a given instance so should be checked before each import/export operation.
	PersistenceIamIdentity string `pulumi:"persistenceIamIdentity"`
	// The port number of the exposed Redis endpoint.
	Port int `pulumi:"port"`
	// Hostname or IP address of the exposed readonly Redis endpoint. Standard tier only. Targets all healthy replica nodes in instance. Replication is asynchronous and replica nodes will exhibit some lag behind the primary. Write requests must target 'host'.
	ReadEndpoint string `pulumi:"readEndpoint"`
	// The port number of the exposed readonly redis endpoint. Standard tier only. Write requests should target 'port'.
	ReadEndpointPort int `pulumi:"readEndpointPort"`
	// Optional. Read replicas mode for the instance. Defaults to READ_REPLICAS_DISABLED.
	ReadReplicasMode string `pulumi:"readReplicasMode"`
	// Optional. Redis configuration parameters, according to http://redis.io/topics/config. Currently, the only supported parameters are: Redis version 3.2 and newer: * maxmemory-policy * notify-keyspace-events Redis version 4.0 and newer: * activedefrag * lfu-decay-time * lfu-log-factor * maxmemory-gb Redis version 5.0 and newer: * stream-node-max-bytes * stream-node-max-entries
	RedisConfigs map[string]string `pulumi:"redisConfigs"`
	// Optional. The version of Redis software. If not provided, latest supported version will be used. Currently, the supported values are: * `REDIS_3_2` for Redis 3.2 compatibility * `REDIS_4_0` for Redis 4.0 compatibility (default) * `REDIS_5_0` for Redis 5.0 compatibility * `REDIS_6_X` for Redis 6.x compatibility
	RedisVersion string `pulumi:"redisVersion"`
	// Optional. The number of replica nodes. The valid range for the Standard Tier with read replicas enabled is [1-5] and defaults to 2. If read replicas are not enabled for a Standard Tier instance, the only valid value is 1 and the default is 1. The valid value for basic tier is 0 and the default is also 0.
	ReplicaCount int `pulumi:"replicaCount"`
	// Optional. For DIRECT_PEERING mode, the CIDR range of internal addresses that are reserved for this instance. Range must be unique and non-overlapping with existing subnets in an authorized network. For PRIVATE_SERVICE_ACCESS mode, the name of one allocated IP address ranges associated with this private service access connection. If not provided, the service will choose an unused /29 block, for example, 10.0.0.0/29 or 192.168.0.0/29. For READ_REPLICAS_ENABLED the default block size is /28.
	ReservedIpRange string `pulumi:"reservedIpRange"`
	// Optional. Output only. Reserved for future use. Zone Separation compliance state of the instance. Field name and documentation is obfuscated according to go/zs-resource-status.
	SatisfiesPzs bool `pulumi:"satisfiesPzs"`
	// Optional. Additional IP range for node placement. Required when enabling read replicas on an existing instance. For DIRECT_PEERING mode value must be a CIDR range of size /28, or "auto". For PRIVATE_SERVICE_ACCESS mode value must be the name of an allocated address range associated with the private service access connection, or "auto".
	SecondaryIpRange string `pulumi:"secondaryIpRange"`
	// List of server CA certificates for the instance.
	ServerCaCerts []TlsCertificateResponse `pulumi:"serverCaCerts"`
	// The current state of this instance.
	State string `pulumi:"state"`
	// Additional information about the current status of this instance, if available.
	StatusMessage string `pulumi:"statusMessage"`
	// Optional. reasons that causes instance in "SUSPENDED" state.
	SuspensionReasons []string `pulumi:"suspensionReasons"`
	// The service tier of the instance.
	Tier string `pulumi:"tier"`
	// Optional. The TLS mode of the Redis instance. If not provided, TLS is disabled for the instance.
	TransitEncryptionMode string `pulumi:"transitEncryptionMode"`
}

func LookupInstance added in v0.4.0

func LookupInstance(ctx *pulumi.Context, args *LookupInstanceArgs, opts ...pulumi.InvokeOption) (*LookupInstanceResult, error)

Gets the details of a specific Redis instance.

type LookupInstanceResultOutput added in v0.8.0

type LookupInstanceResultOutput struct{ *pulumi.OutputState }

func LookupInstanceOutput added in v0.8.0

func LookupInstanceOutput(ctx *pulumi.Context, args LookupInstanceOutputArgs, opts ...pulumi.InvokeOption) LookupInstanceResultOutput

func (LookupInstanceResultOutput) AlternativeLocationId added in v0.8.0

func (o LookupInstanceResultOutput) AlternativeLocationId() pulumi.StringOutput

Optional. If specified, at least one node will be provisioned in this zone in addition to the zone specified in location_id. Only applicable to standard tier. If provided, it must be a different zone from the one provided in [location_id]. Additional nodes beyond the first 2 will be placed in zones selected by the service.

func (LookupInstanceResultOutput) AuthEnabled added in v0.8.0

Optional. Indicates whether OSS Redis AUTH is enabled for the instance. If set to "true" AUTH is enabled on the instance. Default value is "false" meaning AUTH is disabled.

func (LookupInstanceResultOutput) AuthorizedNetwork added in v0.8.0

func (o LookupInstanceResultOutput) AuthorizedNetwork() pulumi.StringOutput

Optional. The full name of the Google Compute Engine [network](https://cloud.google.com/vpc/docs/vpc) to which the instance is connected. If left unspecified, the `default` network will be used.

func (LookupInstanceResultOutput) AvailableMaintenanceVersions added in v0.21.0

func (o LookupInstanceResultOutput) AvailableMaintenanceVersions() pulumi.StringArrayOutput

Optional. The available maintenance versions that an instance could update to.

func (LookupInstanceResultOutput) ConnectMode added in v0.8.0

Optional. The network connect mode of the Redis instance. If not provided, the connect mode defaults to DIRECT_PEERING.

func (LookupInstanceResultOutput) CreateTime added in v0.8.0

The time the instance was created.

func (LookupInstanceResultOutput) CurrentLocationId added in v0.8.0

func (o LookupInstanceResultOutput) CurrentLocationId() pulumi.StringOutput

The current zone where the Redis primary node is located. In basic tier, this will always be the same as [location_id]. In standard tier, this can be the zone of any node in the instance.

func (LookupInstanceResultOutput) CustomerManagedKey added in v0.21.0

func (o LookupInstanceResultOutput) CustomerManagedKey() pulumi.StringOutput

Optional. The KMS key reference that the customer provides when trying to create the instance.

func (LookupInstanceResultOutput) DisplayName added in v0.8.0

An arbitrary and optional user-provided name for the instance.

func (LookupInstanceResultOutput) ElementType added in v0.8.0

func (LookupInstanceResultOutput) ElementType() reflect.Type

func (LookupInstanceResultOutput) Host added in v0.8.0

Hostname or IP address of the exposed Redis endpoint used by clients to connect to the service.

func (LookupInstanceResultOutput) Labels added in v0.8.0

Resource labels to represent user provided metadata

func (LookupInstanceResultOutput) Location added in v0.8.0

Optional. The zone where the instance will be provisioned. If not provided, the service will choose a zone from the specified region for the instance. For standard tier, additional nodes will be added across multiple zones for protection against zonal failures. If specified, at least one node will be provisioned in this zone.

func (LookupInstanceResultOutput) MaintenancePolicy added in v0.8.0

Optional. The maintenance policy for the instance. If not provided, maintenance events can be performed at any time.

func (LookupInstanceResultOutput) MaintenanceSchedule added in v0.8.0

Date and time of upcoming maintenance events which have been scheduled.

func (LookupInstanceResultOutput) MaintenanceVersion added in v0.19.0

func (o LookupInstanceResultOutput) MaintenanceVersion() pulumi.StringOutput

Optional. The self service update maintenance version. The version is date based such as "20210712_00_00".

func (LookupInstanceResultOutput) MemorySizeGb added in v0.8.0

func (o LookupInstanceResultOutput) MemorySizeGb() pulumi.IntOutput

Redis memory size in GiB.

func (LookupInstanceResultOutput) Name added in v0.8.0

Unique name of the resource in this scope including project and location using the form: `projects/{project_id}/locations/{location_id}/instances/{instance_id}` Note: Redis instances are managed and addressed at regional level so location_id here refers to a GCP region; however, users may choose which specific zone (or collection of zones for cross-zone instances) an instance should be provisioned in. Refer to location_id and alternative_location_id fields for more details.

func (LookupInstanceResultOutput) Nodes added in v0.9.0

Info per node.

func (LookupInstanceResultOutput) PersistenceConfig added in v0.9.0

Optional. Persistence configuration parameters

func (LookupInstanceResultOutput) PersistenceIamIdentity added in v0.8.0

func (o LookupInstanceResultOutput) PersistenceIamIdentity() pulumi.StringOutput

Cloud IAM identity used by import / export operations to transfer data to/from Cloud Storage. Format is "serviceAccount:". The value may change over time for a given instance so should be checked before each import/export operation.

func (LookupInstanceResultOutput) Port added in v0.8.0

The port number of the exposed Redis endpoint.

func (LookupInstanceResultOutput) ReadEndpoint added in v0.9.0

Hostname or IP address of the exposed readonly Redis endpoint. Standard tier only. Targets all healthy replica nodes in instance. Replication is asynchronous and replica nodes will exhibit some lag behind the primary. Write requests must target 'host'.

func (LookupInstanceResultOutput) ReadEndpointPort added in v0.9.0

func (o LookupInstanceResultOutput) ReadEndpointPort() pulumi.IntOutput

The port number of the exposed readonly redis endpoint. Standard tier only. Write requests should target 'port'.

func (LookupInstanceResultOutput) ReadReplicasMode added in v0.9.0

func (o LookupInstanceResultOutput) ReadReplicasMode() pulumi.StringOutput

Optional. Read replicas mode for the instance. Defaults to READ_REPLICAS_DISABLED.

func (LookupInstanceResultOutput) RedisConfigs added in v0.8.0

Optional. Redis configuration parameters, according to http://redis.io/topics/config. Currently, the only supported parameters are: Redis version 3.2 and newer: * maxmemory-policy * notify-keyspace-events Redis version 4.0 and newer: * activedefrag * lfu-decay-time * lfu-log-factor * maxmemory-gb Redis version 5.0 and newer: * stream-node-max-bytes * stream-node-max-entries

func (LookupInstanceResultOutput) RedisVersion added in v0.8.0

Optional. The version of Redis software. If not provided, latest supported version will be used. Currently, the supported values are: * `REDIS_3_2` for Redis 3.2 compatibility * `REDIS_4_0` for Redis 4.0 compatibility (default) * `REDIS_5_0` for Redis 5.0 compatibility * `REDIS_6_X` for Redis 6.x compatibility

func (LookupInstanceResultOutput) ReplicaCount added in v0.9.0

func (o LookupInstanceResultOutput) ReplicaCount() pulumi.IntOutput

Optional. The number of replica nodes. The valid range for the Standard Tier with read replicas enabled is [1-5] and defaults to 2. If read replicas are not enabled for a Standard Tier instance, the only valid value is 1 and the default is 1. The valid value for basic tier is 0 and the default is also 0.

func (LookupInstanceResultOutput) ReservedIpRange added in v0.8.0

func (o LookupInstanceResultOutput) ReservedIpRange() pulumi.StringOutput

Optional. For DIRECT_PEERING mode, the CIDR range of internal addresses that are reserved for this instance. Range must be unique and non-overlapping with existing subnets in an authorized network. For PRIVATE_SERVICE_ACCESS mode, the name of one allocated IP address ranges associated with this private service access connection. If not provided, the service will choose an unused /29 block, for example, 10.0.0.0/29 or 192.168.0.0/29. For READ_REPLICAS_ENABLED the default block size is /28.

func (LookupInstanceResultOutput) SatisfiesPzs added in v0.32.0

func (o LookupInstanceResultOutput) SatisfiesPzs() pulumi.BoolOutput

Optional. Output only. Reserved for future use. Zone Separation compliance state of the instance. Field name and documentation is obfuscated according to go/zs-resource-status.

func (LookupInstanceResultOutput) SecondaryIpRange added in v0.12.0

func (o LookupInstanceResultOutput) SecondaryIpRange() pulumi.StringOutput

Optional. Additional IP range for node placement. Required when enabling read replicas on an existing instance. For DIRECT_PEERING mode value must be a CIDR range of size /28, or "auto". For PRIVATE_SERVICE_ACCESS mode value must be the name of an allocated address range associated with the private service access connection, or "auto".

func (LookupInstanceResultOutput) ServerCaCerts added in v0.8.0

List of server CA certificates for the instance.

func (LookupInstanceResultOutput) State added in v0.8.0

The current state of this instance.

func (LookupInstanceResultOutput) StatusMessage added in v0.8.0

Additional information about the current status of this instance, if available.

func (LookupInstanceResultOutput) SuspensionReasons added in v0.21.0

func (o LookupInstanceResultOutput) SuspensionReasons() pulumi.StringArrayOutput

Optional. reasons that causes instance in "SUSPENDED" state.

func (LookupInstanceResultOutput) Tier added in v0.8.0

The service tier of the instance.

func (LookupInstanceResultOutput) ToLookupInstanceResultOutput added in v0.8.0

func (o LookupInstanceResultOutput) ToLookupInstanceResultOutput() LookupInstanceResultOutput

func (LookupInstanceResultOutput) ToLookupInstanceResultOutputWithContext added in v0.8.0

func (o LookupInstanceResultOutput) ToLookupInstanceResultOutputWithContext(ctx context.Context) LookupInstanceResultOutput

func (LookupInstanceResultOutput) TransitEncryptionMode added in v0.8.0

func (o LookupInstanceResultOutput) TransitEncryptionMode() pulumi.StringOutput

Optional. The TLS mode of the Redis instance. If not provided, TLS is disabled for the instance.

type MaintenancePolicy added in v0.5.0

type MaintenancePolicy struct {
	// Optional. Description of what this policy is for. Create/Update methods return INVALID_ARGUMENT if the length is greater than 512.
	Description *string `pulumi:"description"`
	// Optional. Maintenance window that is applied to resources covered by this policy. Minimum 1. For the current version, the maximum number of weekly_window is expected to be one.
	WeeklyMaintenanceWindow []WeeklyMaintenanceWindow `pulumi:"weeklyMaintenanceWindow"`
}

Maintenance policy for an instance.

type MaintenancePolicyArgs added in v0.5.0

type MaintenancePolicyArgs struct {
	// Optional. Description of what this policy is for. Create/Update methods return INVALID_ARGUMENT if the length is greater than 512.
	Description pulumi.StringPtrInput `pulumi:"description"`
	// Optional. Maintenance window that is applied to resources covered by this policy. Minimum 1. For the current version, the maximum number of weekly_window is expected to be one.
	WeeklyMaintenanceWindow WeeklyMaintenanceWindowArrayInput `pulumi:"weeklyMaintenanceWindow"`
}

Maintenance policy for an instance.

func (MaintenancePolicyArgs) ElementType added in v0.5.0

func (MaintenancePolicyArgs) ElementType() reflect.Type

func (MaintenancePolicyArgs) ToMaintenancePolicyOutput added in v0.5.0

func (i MaintenancePolicyArgs) ToMaintenancePolicyOutput() MaintenancePolicyOutput

func (MaintenancePolicyArgs) ToMaintenancePolicyOutputWithContext added in v0.5.0

func (i MaintenancePolicyArgs) ToMaintenancePolicyOutputWithContext(ctx context.Context) MaintenancePolicyOutput

func (MaintenancePolicyArgs) ToMaintenancePolicyPtrOutput added in v0.5.0

func (i MaintenancePolicyArgs) ToMaintenancePolicyPtrOutput() MaintenancePolicyPtrOutput

func (MaintenancePolicyArgs) ToMaintenancePolicyPtrOutputWithContext added in v0.5.0

func (i MaintenancePolicyArgs) ToMaintenancePolicyPtrOutputWithContext(ctx context.Context) MaintenancePolicyPtrOutput

type MaintenancePolicyInput added in v0.5.0

type MaintenancePolicyInput interface {
	pulumi.Input

	ToMaintenancePolicyOutput() MaintenancePolicyOutput
	ToMaintenancePolicyOutputWithContext(context.Context) MaintenancePolicyOutput
}

MaintenancePolicyInput is an input type that accepts MaintenancePolicyArgs and MaintenancePolicyOutput values. You can construct a concrete instance of `MaintenancePolicyInput` via:

MaintenancePolicyArgs{...}

type MaintenancePolicyOutput added in v0.5.0

type MaintenancePolicyOutput struct{ *pulumi.OutputState }

Maintenance policy for an instance.

func (MaintenancePolicyOutput) Description added in v0.5.0

Optional. Description of what this policy is for. Create/Update methods return INVALID_ARGUMENT if the length is greater than 512.

func (MaintenancePolicyOutput) ElementType added in v0.5.0

func (MaintenancePolicyOutput) ElementType() reflect.Type

func (MaintenancePolicyOutput) ToMaintenancePolicyOutput added in v0.5.0

func (o MaintenancePolicyOutput) ToMaintenancePolicyOutput() MaintenancePolicyOutput

func (MaintenancePolicyOutput) ToMaintenancePolicyOutputWithContext added in v0.5.0

func (o MaintenancePolicyOutput) ToMaintenancePolicyOutputWithContext(ctx context.Context) MaintenancePolicyOutput

func (MaintenancePolicyOutput) ToMaintenancePolicyPtrOutput added in v0.5.0

func (o MaintenancePolicyOutput) ToMaintenancePolicyPtrOutput() MaintenancePolicyPtrOutput

func (MaintenancePolicyOutput) ToMaintenancePolicyPtrOutputWithContext added in v0.5.0

func (o MaintenancePolicyOutput) ToMaintenancePolicyPtrOutputWithContext(ctx context.Context) MaintenancePolicyPtrOutput

func (MaintenancePolicyOutput) WeeklyMaintenanceWindow added in v0.5.0

func (o MaintenancePolicyOutput) WeeklyMaintenanceWindow() WeeklyMaintenanceWindowArrayOutput

Optional. Maintenance window that is applied to resources covered by this policy. Minimum 1. For the current version, the maximum number of weekly_window is expected to be one.

type MaintenancePolicyPtrInput added in v0.5.0

type MaintenancePolicyPtrInput interface {
	pulumi.Input

	ToMaintenancePolicyPtrOutput() MaintenancePolicyPtrOutput
	ToMaintenancePolicyPtrOutputWithContext(context.Context) MaintenancePolicyPtrOutput
}

MaintenancePolicyPtrInput is an input type that accepts MaintenancePolicyArgs, MaintenancePolicyPtr and MaintenancePolicyPtrOutput values. You can construct a concrete instance of `MaintenancePolicyPtrInput` via:

        MaintenancePolicyArgs{...}

or:

        nil

func MaintenancePolicyPtr added in v0.5.0

func MaintenancePolicyPtr(v *MaintenancePolicyArgs) MaintenancePolicyPtrInput

type MaintenancePolicyPtrOutput added in v0.5.0

type MaintenancePolicyPtrOutput struct{ *pulumi.OutputState }

func (MaintenancePolicyPtrOutput) Description added in v0.5.0

Optional. Description of what this policy is for. Create/Update methods return INVALID_ARGUMENT if the length is greater than 512.

func (MaintenancePolicyPtrOutput) Elem added in v0.5.0

func (MaintenancePolicyPtrOutput) ElementType added in v0.5.0

func (MaintenancePolicyPtrOutput) ElementType() reflect.Type

func (MaintenancePolicyPtrOutput) ToMaintenancePolicyPtrOutput added in v0.5.0

func (o MaintenancePolicyPtrOutput) ToMaintenancePolicyPtrOutput() MaintenancePolicyPtrOutput

func (MaintenancePolicyPtrOutput) ToMaintenancePolicyPtrOutputWithContext added in v0.5.0

func (o MaintenancePolicyPtrOutput) ToMaintenancePolicyPtrOutputWithContext(ctx context.Context) MaintenancePolicyPtrOutput

func (MaintenancePolicyPtrOutput) WeeklyMaintenanceWindow added in v0.5.0

Optional. Maintenance window that is applied to resources covered by this policy. Minimum 1. For the current version, the maximum number of weekly_window is expected to be one.

type MaintenancePolicyResponse added in v0.5.0

type MaintenancePolicyResponse struct {
	// The time when the policy was created.
	CreateTime string `pulumi:"createTime"`
	// Optional. Description of what this policy is for. Create/Update methods return INVALID_ARGUMENT if the length is greater than 512.
	Description string `pulumi:"description"`
	// The time when the policy was last updated.
	UpdateTime string `pulumi:"updateTime"`
	// Optional. Maintenance window that is applied to resources covered by this policy. Minimum 1. For the current version, the maximum number of weekly_window is expected to be one.
	WeeklyMaintenanceWindow []WeeklyMaintenanceWindowResponse `pulumi:"weeklyMaintenanceWindow"`
}

Maintenance policy for an instance.

type MaintenancePolicyResponseOutput added in v0.5.0

type MaintenancePolicyResponseOutput struct{ *pulumi.OutputState }

Maintenance policy for an instance.

func (MaintenancePolicyResponseOutput) CreateTime added in v0.5.0

The time when the policy was created.

func (MaintenancePolicyResponseOutput) Description added in v0.5.0

Optional. Description of what this policy is for. Create/Update methods return INVALID_ARGUMENT if the length is greater than 512.

func (MaintenancePolicyResponseOutput) ElementType added in v0.5.0

func (MaintenancePolicyResponseOutput) ToMaintenancePolicyResponseOutput added in v0.5.0

func (o MaintenancePolicyResponseOutput) ToMaintenancePolicyResponseOutput() MaintenancePolicyResponseOutput

func (MaintenancePolicyResponseOutput) ToMaintenancePolicyResponseOutputWithContext added in v0.5.0

func (o MaintenancePolicyResponseOutput) ToMaintenancePolicyResponseOutputWithContext(ctx context.Context) MaintenancePolicyResponseOutput

func (MaintenancePolicyResponseOutput) UpdateTime added in v0.5.0

The time when the policy was last updated.

func (MaintenancePolicyResponseOutput) WeeklyMaintenanceWindow added in v0.5.0

Optional. Maintenance window that is applied to resources covered by this policy. Minimum 1. For the current version, the maximum number of weekly_window is expected to be one.

type MaintenanceScheduleResponse added in v0.5.0

type MaintenanceScheduleResponse struct {
	// If the scheduled maintenance can be rescheduled, default is true.
	CanReschedule bool `pulumi:"canReschedule"`
	// The end time of any upcoming scheduled maintenance for this instance.
	EndTime string `pulumi:"endTime"`
	// The deadline that the maintenance schedule start time can not go beyond, including reschedule.
	ScheduleDeadlineTime string `pulumi:"scheduleDeadlineTime"`
	// The start time of any upcoming scheduled maintenance for this instance.
	StartTime string `pulumi:"startTime"`
}

Upcoming maintenance schedule. If no maintenance is scheduled, fields are not populated.

type MaintenanceScheduleResponseOutput added in v0.5.0

type MaintenanceScheduleResponseOutput struct{ *pulumi.OutputState }

Upcoming maintenance schedule. If no maintenance is scheduled, fields are not populated.

func (MaintenanceScheduleResponseOutput) CanReschedule added in v0.5.0

If the scheduled maintenance can be rescheduled, default is true.

func (MaintenanceScheduleResponseOutput) ElementType added in v0.5.0

func (MaintenanceScheduleResponseOutput) EndTime added in v0.5.0

The end time of any upcoming scheduled maintenance for this instance.

func (MaintenanceScheduleResponseOutput) ScheduleDeadlineTime added in v0.5.0

func (o MaintenanceScheduleResponseOutput) ScheduleDeadlineTime() pulumi.StringOutput

The deadline that the maintenance schedule start time can not go beyond, including reschedule.

func (MaintenanceScheduleResponseOutput) StartTime added in v0.5.0

The start time of any upcoming scheduled maintenance for this instance.

func (MaintenanceScheduleResponseOutput) ToMaintenanceScheduleResponseOutput added in v0.5.0

func (o MaintenanceScheduleResponseOutput) ToMaintenanceScheduleResponseOutput() MaintenanceScheduleResponseOutput

func (MaintenanceScheduleResponseOutput) ToMaintenanceScheduleResponseOutputWithContext added in v0.5.0

func (o MaintenanceScheduleResponseOutput) ToMaintenanceScheduleResponseOutputWithContext(ctx context.Context) MaintenanceScheduleResponseOutput

type NodeInfoResponse added in v0.9.0

type NodeInfoResponse struct {
	// Location of the node.
	Zone string `pulumi:"zone"`
}

Node specific properties.

type NodeInfoResponseArrayOutput added in v0.9.0

type NodeInfoResponseArrayOutput struct{ *pulumi.OutputState }

func (NodeInfoResponseArrayOutput) ElementType added in v0.9.0

func (NodeInfoResponseArrayOutput) Index added in v0.9.0

func (NodeInfoResponseArrayOutput) ToNodeInfoResponseArrayOutput added in v0.9.0

func (o NodeInfoResponseArrayOutput) ToNodeInfoResponseArrayOutput() NodeInfoResponseArrayOutput

func (NodeInfoResponseArrayOutput) ToNodeInfoResponseArrayOutputWithContext added in v0.9.0

func (o NodeInfoResponseArrayOutput) ToNodeInfoResponseArrayOutputWithContext(ctx context.Context) NodeInfoResponseArrayOutput

type NodeInfoResponseOutput added in v0.9.0

type NodeInfoResponseOutput struct{ *pulumi.OutputState }

Node specific properties.

func (NodeInfoResponseOutput) ElementType added in v0.9.0

func (NodeInfoResponseOutput) ElementType() reflect.Type

func (NodeInfoResponseOutput) ToNodeInfoResponseOutput added in v0.9.0

func (o NodeInfoResponseOutput) ToNodeInfoResponseOutput() NodeInfoResponseOutput

func (NodeInfoResponseOutput) ToNodeInfoResponseOutputWithContext added in v0.9.0

func (o NodeInfoResponseOutput) ToNodeInfoResponseOutputWithContext(ctx context.Context) NodeInfoResponseOutput

func (NodeInfoResponseOutput) Zone added in v0.9.0

Location of the node.

type PersistenceConfig added in v0.9.0

type PersistenceConfig struct {
	// Optional. Controls whether Persistence features are enabled. If not provided, the existing value will be used.
	PersistenceMode *PersistenceConfigPersistenceMode `pulumi:"persistenceMode"`
	// Optional. Period between RDB snapshots. Snapshots will be attempted every period starting from the provided snapshot start time. For example, a start time of 01/01/2033 06:45 and SIX_HOURS snapshot period will do nothing until 01/01/2033, and then trigger snapshots every day at 06:45, 12:45, 18:45, and 00:45 the next day, and so on. If not provided, TWENTY_FOUR_HOURS will be used as default.
	RdbSnapshotPeriod *PersistenceConfigRdbSnapshotPeriod `pulumi:"rdbSnapshotPeriod"`
	// Optional. Date and time that the first snapshot was/will be attempted, and to which future snapshots will be aligned. If not provided, the current time will be used.
	RdbSnapshotStartTime *string `pulumi:"rdbSnapshotStartTime"`
}

Configuration of the persistence functionality.

type PersistenceConfigArgs added in v0.9.0

type PersistenceConfigArgs struct {
	// Optional. Controls whether Persistence features are enabled. If not provided, the existing value will be used.
	PersistenceMode PersistenceConfigPersistenceModePtrInput `pulumi:"persistenceMode"`
	// Optional. Period between RDB snapshots. Snapshots will be attempted every period starting from the provided snapshot start time. For example, a start time of 01/01/2033 06:45 and SIX_HOURS snapshot period will do nothing until 01/01/2033, and then trigger snapshots every day at 06:45, 12:45, 18:45, and 00:45 the next day, and so on. If not provided, TWENTY_FOUR_HOURS will be used as default.
	RdbSnapshotPeriod PersistenceConfigRdbSnapshotPeriodPtrInput `pulumi:"rdbSnapshotPeriod"`
	// Optional. Date and time that the first snapshot was/will be attempted, and to which future snapshots will be aligned. If not provided, the current time will be used.
	RdbSnapshotStartTime pulumi.StringPtrInput `pulumi:"rdbSnapshotStartTime"`
}

Configuration of the persistence functionality.

func (PersistenceConfigArgs) ElementType added in v0.9.0

func (PersistenceConfigArgs) ElementType() reflect.Type

func (PersistenceConfigArgs) ToPersistenceConfigOutput added in v0.9.0

func (i PersistenceConfigArgs) ToPersistenceConfigOutput() PersistenceConfigOutput

func (PersistenceConfigArgs) ToPersistenceConfigOutputWithContext added in v0.9.0

func (i PersistenceConfigArgs) ToPersistenceConfigOutputWithContext(ctx context.Context) PersistenceConfigOutput

func (PersistenceConfigArgs) ToPersistenceConfigPtrOutput added in v0.9.0

func (i PersistenceConfigArgs) ToPersistenceConfigPtrOutput() PersistenceConfigPtrOutput

func (PersistenceConfigArgs) ToPersistenceConfigPtrOutputWithContext added in v0.9.0

func (i PersistenceConfigArgs) ToPersistenceConfigPtrOutputWithContext(ctx context.Context) PersistenceConfigPtrOutput

type PersistenceConfigInput added in v0.9.0

type PersistenceConfigInput interface {
	pulumi.Input

	ToPersistenceConfigOutput() PersistenceConfigOutput
	ToPersistenceConfigOutputWithContext(context.Context) PersistenceConfigOutput
}

PersistenceConfigInput is an input type that accepts PersistenceConfigArgs and PersistenceConfigOutput values. You can construct a concrete instance of `PersistenceConfigInput` via:

PersistenceConfigArgs{...}

type PersistenceConfigOutput added in v0.9.0

type PersistenceConfigOutput struct{ *pulumi.OutputState }

Configuration of the persistence functionality.

func (PersistenceConfigOutput) ElementType added in v0.9.0

func (PersistenceConfigOutput) ElementType() reflect.Type

func (PersistenceConfigOutput) PersistenceMode added in v0.9.0

Optional. Controls whether Persistence features are enabled. If not provided, the existing value will be used.

func (PersistenceConfigOutput) RdbSnapshotPeriod added in v0.9.0

Optional. Period between RDB snapshots. Snapshots will be attempted every period starting from the provided snapshot start time. For example, a start time of 01/01/2033 06:45 and SIX_HOURS snapshot period will do nothing until 01/01/2033, and then trigger snapshots every day at 06:45, 12:45, 18:45, and 00:45 the next day, and so on. If not provided, TWENTY_FOUR_HOURS will be used as default.

func (PersistenceConfigOutput) RdbSnapshotStartTime added in v0.9.0

func (o PersistenceConfigOutput) RdbSnapshotStartTime() pulumi.StringPtrOutput

Optional. Date and time that the first snapshot was/will be attempted, and to which future snapshots will be aligned. If not provided, the current time will be used.

func (PersistenceConfigOutput) ToPersistenceConfigOutput added in v0.9.0

func (o PersistenceConfigOutput) ToPersistenceConfigOutput() PersistenceConfigOutput

func (PersistenceConfigOutput) ToPersistenceConfigOutputWithContext added in v0.9.0

func (o PersistenceConfigOutput) ToPersistenceConfigOutputWithContext(ctx context.Context) PersistenceConfigOutput

func (PersistenceConfigOutput) ToPersistenceConfigPtrOutput added in v0.9.0

func (o PersistenceConfigOutput) ToPersistenceConfigPtrOutput() PersistenceConfigPtrOutput

func (PersistenceConfigOutput) ToPersistenceConfigPtrOutputWithContext added in v0.9.0

func (o PersistenceConfigOutput) ToPersistenceConfigPtrOutputWithContext(ctx context.Context) PersistenceConfigPtrOutput

type PersistenceConfigPersistenceMode added in v0.9.0

type PersistenceConfigPersistenceMode string

Optional. Controls whether Persistence features are enabled. If not provided, the existing value will be used.

func (PersistenceConfigPersistenceMode) ElementType added in v0.9.0

func (PersistenceConfigPersistenceMode) ToPersistenceConfigPersistenceModeOutput added in v0.9.0

func (e PersistenceConfigPersistenceMode) ToPersistenceConfigPersistenceModeOutput() PersistenceConfigPersistenceModeOutput

func (PersistenceConfigPersistenceMode) ToPersistenceConfigPersistenceModeOutputWithContext added in v0.9.0

func (e PersistenceConfigPersistenceMode) ToPersistenceConfigPersistenceModeOutputWithContext(ctx context.Context) PersistenceConfigPersistenceModeOutput

func (PersistenceConfigPersistenceMode) ToPersistenceConfigPersistenceModePtrOutput added in v0.9.0

func (e PersistenceConfigPersistenceMode) ToPersistenceConfigPersistenceModePtrOutput() PersistenceConfigPersistenceModePtrOutput

func (PersistenceConfigPersistenceMode) ToPersistenceConfigPersistenceModePtrOutputWithContext added in v0.9.0

func (e PersistenceConfigPersistenceMode) ToPersistenceConfigPersistenceModePtrOutputWithContext(ctx context.Context) PersistenceConfigPersistenceModePtrOutput

func (PersistenceConfigPersistenceMode) ToStringOutput added in v0.9.0

func (PersistenceConfigPersistenceMode) ToStringOutputWithContext added in v0.9.0

func (e PersistenceConfigPersistenceMode) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (PersistenceConfigPersistenceMode) ToStringPtrOutput added in v0.9.0

func (PersistenceConfigPersistenceMode) ToStringPtrOutputWithContext added in v0.9.0

func (e PersistenceConfigPersistenceMode) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type PersistenceConfigPersistenceModeInput added in v0.9.0

type PersistenceConfigPersistenceModeInput interface {
	pulumi.Input

	ToPersistenceConfigPersistenceModeOutput() PersistenceConfigPersistenceModeOutput
	ToPersistenceConfigPersistenceModeOutputWithContext(context.Context) PersistenceConfigPersistenceModeOutput
}

PersistenceConfigPersistenceModeInput is an input type that accepts PersistenceConfigPersistenceModeArgs and PersistenceConfigPersistenceModeOutput values. You can construct a concrete instance of `PersistenceConfigPersistenceModeInput` via:

PersistenceConfigPersistenceModeArgs{...}

type PersistenceConfigPersistenceModeOutput added in v0.9.0

type PersistenceConfigPersistenceModeOutput struct{ *pulumi.OutputState }

func (PersistenceConfigPersistenceModeOutput) ElementType added in v0.9.0

func (PersistenceConfigPersistenceModeOutput) ToPersistenceConfigPersistenceModeOutput added in v0.9.0

func (o PersistenceConfigPersistenceModeOutput) ToPersistenceConfigPersistenceModeOutput() PersistenceConfigPersistenceModeOutput

func (PersistenceConfigPersistenceModeOutput) ToPersistenceConfigPersistenceModeOutputWithContext added in v0.9.0

func (o PersistenceConfigPersistenceModeOutput) ToPersistenceConfigPersistenceModeOutputWithContext(ctx context.Context) PersistenceConfigPersistenceModeOutput

func (PersistenceConfigPersistenceModeOutput) ToPersistenceConfigPersistenceModePtrOutput added in v0.9.0

func (o PersistenceConfigPersistenceModeOutput) ToPersistenceConfigPersistenceModePtrOutput() PersistenceConfigPersistenceModePtrOutput

func (PersistenceConfigPersistenceModeOutput) ToPersistenceConfigPersistenceModePtrOutputWithContext added in v0.9.0

func (o PersistenceConfigPersistenceModeOutput) ToPersistenceConfigPersistenceModePtrOutputWithContext(ctx context.Context) PersistenceConfigPersistenceModePtrOutput

func (PersistenceConfigPersistenceModeOutput) ToStringOutput added in v0.9.0

func (PersistenceConfigPersistenceModeOutput) ToStringOutputWithContext added in v0.9.0

func (PersistenceConfigPersistenceModeOutput) ToStringPtrOutput added in v0.9.0

func (PersistenceConfigPersistenceModeOutput) ToStringPtrOutputWithContext added in v0.9.0

func (o PersistenceConfigPersistenceModeOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type PersistenceConfigPersistenceModePtrInput added in v0.9.0

type PersistenceConfigPersistenceModePtrInput interface {
	pulumi.Input

	ToPersistenceConfigPersistenceModePtrOutput() PersistenceConfigPersistenceModePtrOutput
	ToPersistenceConfigPersistenceModePtrOutputWithContext(context.Context) PersistenceConfigPersistenceModePtrOutput
}

func PersistenceConfigPersistenceModePtr added in v0.9.0

func PersistenceConfigPersistenceModePtr(v string) PersistenceConfigPersistenceModePtrInput

type PersistenceConfigPersistenceModePtrOutput added in v0.9.0

type PersistenceConfigPersistenceModePtrOutput struct{ *pulumi.OutputState }

func (PersistenceConfigPersistenceModePtrOutput) Elem added in v0.9.0

func (PersistenceConfigPersistenceModePtrOutput) ElementType added in v0.9.0

func (PersistenceConfigPersistenceModePtrOutput) ToPersistenceConfigPersistenceModePtrOutput added in v0.9.0

func (o PersistenceConfigPersistenceModePtrOutput) ToPersistenceConfigPersistenceModePtrOutput() PersistenceConfigPersistenceModePtrOutput

func (PersistenceConfigPersistenceModePtrOutput) ToPersistenceConfigPersistenceModePtrOutputWithContext added in v0.9.0

func (o PersistenceConfigPersistenceModePtrOutput) ToPersistenceConfigPersistenceModePtrOutputWithContext(ctx context.Context) PersistenceConfigPersistenceModePtrOutput

func (PersistenceConfigPersistenceModePtrOutput) ToStringPtrOutput added in v0.9.0

func (PersistenceConfigPersistenceModePtrOutput) ToStringPtrOutputWithContext added in v0.9.0

type PersistenceConfigPtrInput added in v0.9.0

type PersistenceConfigPtrInput interface {
	pulumi.Input

	ToPersistenceConfigPtrOutput() PersistenceConfigPtrOutput
	ToPersistenceConfigPtrOutputWithContext(context.Context) PersistenceConfigPtrOutput
}

PersistenceConfigPtrInput is an input type that accepts PersistenceConfigArgs, PersistenceConfigPtr and PersistenceConfigPtrOutput values. You can construct a concrete instance of `PersistenceConfigPtrInput` via:

        PersistenceConfigArgs{...}

or:

        nil

func PersistenceConfigPtr added in v0.9.0

func PersistenceConfigPtr(v *PersistenceConfigArgs) PersistenceConfigPtrInput

type PersistenceConfigPtrOutput added in v0.9.0

type PersistenceConfigPtrOutput struct{ *pulumi.OutputState }

func (PersistenceConfigPtrOutput) Elem added in v0.9.0

func (PersistenceConfigPtrOutput) ElementType added in v0.9.0

func (PersistenceConfigPtrOutput) ElementType() reflect.Type

func (PersistenceConfigPtrOutput) PersistenceMode added in v0.9.0

Optional. Controls whether Persistence features are enabled. If not provided, the existing value will be used.

func (PersistenceConfigPtrOutput) RdbSnapshotPeriod added in v0.9.0

Optional. Period between RDB snapshots. Snapshots will be attempted every period starting from the provided snapshot start time. For example, a start time of 01/01/2033 06:45 and SIX_HOURS snapshot period will do nothing until 01/01/2033, and then trigger snapshots every day at 06:45, 12:45, 18:45, and 00:45 the next day, and so on. If not provided, TWENTY_FOUR_HOURS will be used as default.

func (PersistenceConfigPtrOutput) RdbSnapshotStartTime added in v0.9.0

func (o PersistenceConfigPtrOutput) RdbSnapshotStartTime() pulumi.StringPtrOutput

Optional. Date and time that the first snapshot was/will be attempted, and to which future snapshots will be aligned. If not provided, the current time will be used.

func (PersistenceConfigPtrOutput) ToPersistenceConfigPtrOutput added in v0.9.0

func (o PersistenceConfigPtrOutput) ToPersistenceConfigPtrOutput() PersistenceConfigPtrOutput

func (PersistenceConfigPtrOutput) ToPersistenceConfigPtrOutputWithContext added in v0.9.0

func (o PersistenceConfigPtrOutput) ToPersistenceConfigPtrOutputWithContext(ctx context.Context) PersistenceConfigPtrOutput

type PersistenceConfigRdbSnapshotPeriod added in v0.9.0

type PersistenceConfigRdbSnapshotPeriod string

Optional. Period between RDB snapshots. Snapshots will be attempted every period starting from the provided snapshot start time. For example, a start time of 01/01/2033 06:45 and SIX_HOURS snapshot period will do nothing until 01/01/2033, and then trigger snapshots every day at 06:45, 12:45, 18:45, and 00:45 the next day, and so on. If not provided, TWENTY_FOUR_HOURS will be used as default.

func (PersistenceConfigRdbSnapshotPeriod) ElementType added in v0.9.0

func (PersistenceConfigRdbSnapshotPeriod) ToPersistenceConfigRdbSnapshotPeriodOutput added in v0.9.0

func (e PersistenceConfigRdbSnapshotPeriod) ToPersistenceConfigRdbSnapshotPeriodOutput() PersistenceConfigRdbSnapshotPeriodOutput

func (PersistenceConfigRdbSnapshotPeriod) ToPersistenceConfigRdbSnapshotPeriodOutputWithContext added in v0.9.0

func (e PersistenceConfigRdbSnapshotPeriod) ToPersistenceConfigRdbSnapshotPeriodOutputWithContext(ctx context.Context) PersistenceConfigRdbSnapshotPeriodOutput

func (PersistenceConfigRdbSnapshotPeriod) ToPersistenceConfigRdbSnapshotPeriodPtrOutput added in v0.9.0

func (e PersistenceConfigRdbSnapshotPeriod) ToPersistenceConfigRdbSnapshotPeriodPtrOutput() PersistenceConfigRdbSnapshotPeriodPtrOutput

func (PersistenceConfigRdbSnapshotPeriod) ToPersistenceConfigRdbSnapshotPeriodPtrOutputWithContext added in v0.9.0

func (e PersistenceConfigRdbSnapshotPeriod) ToPersistenceConfigRdbSnapshotPeriodPtrOutputWithContext(ctx context.Context) PersistenceConfigRdbSnapshotPeriodPtrOutput

func (PersistenceConfigRdbSnapshotPeriod) ToStringOutput added in v0.9.0

func (PersistenceConfigRdbSnapshotPeriod) ToStringOutputWithContext added in v0.9.0

func (e PersistenceConfigRdbSnapshotPeriod) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (PersistenceConfigRdbSnapshotPeriod) ToStringPtrOutput added in v0.9.0

func (PersistenceConfigRdbSnapshotPeriod) ToStringPtrOutputWithContext added in v0.9.0

func (e PersistenceConfigRdbSnapshotPeriod) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type PersistenceConfigRdbSnapshotPeriodInput added in v0.9.0

type PersistenceConfigRdbSnapshotPeriodInput interface {
	pulumi.Input

	ToPersistenceConfigRdbSnapshotPeriodOutput() PersistenceConfigRdbSnapshotPeriodOutput
	ToPersistenceConfigRdbSnapshotPeriodOutputWithContext(context.Context) PersistenceConfigRdbSnapshotPeriodOutput
}

PersistenceConfigRdbSnapshotPeriodInput is an input type that accepts PersistenceConfigRdbSnapshotPeriodArgs and PersistenceConfigRdbSnapshotPeriodOutput values. You can construct a concrete instance of `PersistenceConfigRdbSnapshotPeriodInput` via:

PersistenceConfigRdbSnapshotPeriodArgs{...}

type PersistenceConfigRdbSnapshotPeriodOutput added in v0.9.0

type PersistenceConfigRdbSnapshotPeriodOutput struct{ *pulumi.OutputState }

func (PersistenceConfigRdbSnapshotPeriodOutput) ElementType added in v0.9.0

func (PersistenceConfigRdbSnapshotPeriodOutput) ToPersistenceConfigRdbSnapshotPeriodOutput added in v0.9.0

func (o PersistenceConfigRdbSnapshotPeriodOutput) ToPersistenceConfigRdbSnapshotPeriodOutput() PersistenceConfigRdbSnapshotPeriodOutput

func (PersistenceConfigRdbSnapshotPeriodOutput) ToPersistenceConfigRdbSnapshotPeriodOutputWithContext added in v0.9.0

func (o PersistenceConfigRdbSnapshotPeriodOutput) ToPersistenceConfigRdbSnapshotPeriodOutputWithContext(ctx context.Context) PersistenceConfigRdbSnapshotPeriodOutput

func (PersistenceConfigRdbSnapshotPeriodOutput) ToPersistenceConfigRdbSnapshotPeriodPtrOutput added in v0.9.0

func (o PersistenceConfigRdbSnapshotPeriodOutput) ToPersistenceConfigRdbSnapshotPeriodPtrOutput() PersistenceConfigRdbSnapshotPeriodPtrOutput

func (PersistenceConfigRdbSnapshotPeriodOutput) ToPersistenceConfigRdbSnapshotPeriodPtrOutputWithContext added in v0.9.0

func (o PersistenceConfigRdbSnapshotPeriodOutput) ToPersistenceConfigRdbSnapshotPeriodPtrOutputWithContext(ctx context.Context) PersistenceConfigRdbSnapshotPeriodPtrOutput

func (PersistenceConfigRdbSnapshotPeriodOutput) ToStringOutput added in v0.9.0

func (PersistenceConfigRdbSnapshotPeriodOutput) ToStringOutputWithContext added in v0.9.0

func (PersistenceConfigRdbSnapshotPeriodOutput) ToStringPtrOutput added in v0.9.0

func (PersistenceConfigRdbSnapshotPeriodOutput) ToStringPtrOutputWithContext added in v0.9.0

type PersistenceConfigRdbSnapshotPeriodPtrInput added in v0.9.0

type PersistenceConfigRdbSnapshotPeriodPtrInput interface {
	pulumi.Input

	ToPersistenceConfigRdbSnapshotPeriodPtrOutput() PersistenceConfigRdbSnapshotPeriodPtrOutput
	ToPersistenceConfigRdbSnapshotPeriodPtrOutputWithContext(context.Context) PersistenceConfigRdbSnapshotPeriodPtrOutput
}

func PersistenceConfigRdbSnapshotPeriodPtr added in v0.9.0

func PersistenceConfigRdbSnapshotPeriodPtr(v string) PersistenceConfigRdbSnapshotPeriodPtrInput

type PersistenceConfigRdbSnapshotPeriodPtrOutput added in v0.9.0

type PersistenceConfigRdbSnapshotPeriodPtrOutput struct{ *pulumi.OutputState }

func (PersistenceConfigRdbSnapshotPeriodPtrOutput) Elem added in v0.9.0

func (PersistenceConfigRdbSnapshotPeriodPtrOutput) ElementType added in v0.9.0

func (PersistenceConfigRdbSnapshotPeriodPtrOutput) ToPersistenceConfigRdbSnapshotPeriodPtrOutput added in v0.9.0

func (o PersistenceConfigRdbSnapshotPeriodPtrOutput) ToPersistenceConfigRdbSnapshotPeriodPtrOutput() PersistenceConfigRdbSnapshotPeriodPtrOutput

func (PersistenceConfigRdbSnapshotPeriodPtrOutput) ToPersistenceConfigRdbSnapshotPeriodPtrOutputWithContext added in v0.9.0

func (o PersistenceConfigRdbSnapshotPeriodPtrOutput) ToPersistenceConfigRdbSnapshotPeriodPtrOutputWithContext(ctx context.Context) PersistenceConfigRdbSnapshotPeriodPtrOutput

func (PersistenceConfigRdbSnapshotPeriodPtrOutput) ToStringPtrOutput added in v0.9.0

func (PersistenceConfigRdbSnapshotPeriodPtrOutput) ToStringPtrOutputWithContext added in v0.9.0

type PersistenceConfigResponse added in v0.9.0

type PersistenceConfigResponse struct {
	// Optional. Controls whether Persistence features are enabled. If not provided, the existing value will be used.
	PersistenceMode string `pulumi:"persistenceMode"`
	// The next time that a snapshot attempt is scheduled to occur.
	RdbNextSnapshotTime string `pulumi:"rdbNextSnapshotTime"`
	// Optional. Period between RDB snapshots. Snapshots will be attempted every period starting from the provided snapshot start time. For example, a start time of 01/01/2033 06:45 and SIX_HOURS snapshot period will do nothing until 01/01/2033, and then trigger snapshots every day at 06:45, 12:45, 18:45, and 00:45 the next day, and so on. If not provided, TWENTY_FOUR_HOURS will be used as default.
	RdbSnapshotPeriod string `pulumi:"rdbSnapshotPeriod"`
	// Optional. Date and time that the first snapshot was/will be attempted, and to which future snapshots will be aligned. If not provided, the current time will be used.
	RdbSnapshotStartTime string `pulumi:"rdbSnapshotStartTime"`
}

Configuration of the persistence functionality.

type PersistenceConfigResponseOutput added in v0.9.0

type PersistenceConfigResponseOutput struct{ *pulumi.OutputState }

Configuration of the persistence functionality.

func (PersistenceConfigResponseOutput) ElementType added in v0.9.0

func (PersistenceConfigResponseOutput) PersistenceMode added in v0.9.0

Optional. Controls whether Persistence features are enabled. If not provided, the existing value will be used.

func (PersistenceConfigResponseOutput) RdbNextSnapshotTime added in v0.9.0

func (o PersistenceConfigResponseOutput) RdbNextSnapshotTime() pulumi.StringOutput

The next time that a snapshot attempt is scheduled to occur.

func (PersistenceConfigResponseOutput) RdbSnapshotPeriod added in v0.9.0

func (o PersistenceConfigResponseOutput) RdbSnapshotPeriod() pulumi.StringOutput

Optional. Period between RDB snapshots. Snapshots will be attempted every period starting from the provided snapshot start time. For example, a start time of 01/01/2033 06:45 and SIX_HOURS snapshot period will do nothing until 01/01/2033, and then trigger snapshots every day at 06:45, 12:45, 18:45, and 00:45 the next day, and so on. If not provided, TWENTY_FOUR_HOURS will be used as default.

func (PersistenceConfigResponseOutput) RdbSnapshotStartTime added in v0.9.0

func (o PersistenceConfigResponseOutput) RdbSnapshotStartTime() pulumi.StringOutput

Optional. Date and time that the first snapshot was/will be attempted, and to which future snapshots will be aligned. If not provided, the current time will be used.

func (PersistenceConfigResponseOutput) ToPersistenceConfigResponseOutput added in v0.9.0

func (o PersistenceConfigResponseOutput) ToPersistenceConfigResponseOutput() PersistenceConfigResponseOutput

func (PersistenceConfigResponseOutput) ToPersistenceConfigResponseOutputWithContext added in v0.9.0

func (o PersistenceConfigResponseOutput) ToPersistenceConfigResponseOutputWithContext(ctx context.Context) PersistenceConfigResponseOutput

type PscConfig added in v0.32.0

type PscConfig struct {
	// The network where the IP address of the discovery endpoint will be reserved, in the form of projects/{network_project}/global/networks/{network_id}.
	Network string `pulumi:"network"`
}

type PscConfigArgs added in v0.32.0

type PscConfigArgs struct {
	// The network where the IP address of the discovery endpoint will be reserved, in the form of projects/{network_project}/global/networks/{network_id}.
	Network pulumi.StringInput `pulumi:"network"`
}

func (PscConfigArgs) ElementType added in v0.32.0

func (PscConfigArgs) ElementType() reflect.Type

func (PscConfigArgs) ToPscConfigOutput added in v0.32.0

func (i PscConfigArgs) ToPscConfigOutput() PscConfigOutput

func (PscConfigArgs) ToPscConfigOutputWithContext added in v0.32.0

func (i PscConfigArgs) ToPscConfigOutputWithContext(ctx context.Context) PscConfigOutput

type PscConfigArray added in v0.32.0

type PscConfigArray []PscConfigInput

func (PscConfigArray) ElementType added in v0.32.0

func (PscConfigArray) ElementType() reflect.Type

func (PscConfigArray) ToPscConfigArrayOutput added in v0.32.0

func (i PscConfigArray) ToPscConfigArrayOutput() PscConfigArrayOutput

func (PscConfigArray) ToPscConfigArrayOutputWithContext added in v0.32.0

func (i PscConfigArray) ToPscConfigArrayOutputWithContext(ctx context.Context) PscConfigArrayOutput

type PscConfigArrayInput added in v0.32.0

type PscConfigArrayInput interface {
	pulumi.Input

	ToPscConfigArrayOutput() PscConfigArrayOutput
	ToPscConfigArrayOutputWithContext(context.Context) PscConfigArrayOutput
}

PscConfigArrayInput is an input type that accepts PscConfigArray and PscConfigArrayOutput values. You can construct a concrete instance of `PscConfigArrayInput` via:

PscConfigArray{ PscConfigArgs{...} }

type PscConfigArrayOutput added in v0.32.0

type PscConfigArrayOutput struct{ *pulumi.OutputState }

func (PscConfigArrayOutput) ElementType added in v0.32.0

func (PscConfigArrayOutput) ElementType() reflect.Type

func (PscConfigArrayOutput) Index added in v0.32.0

func (PscConfigArrayOutput) ToPscConfigArrayOutput added in v0.32.0

func (o PscConfigArrayOutput) ToPscConfigArrayOutput() PscConfigArrayOutput

func (PscConfigArrayOutput) ToPscConfigArrayOutputWithContext added in v0.32.0

func (o PscConfigArrayOutput) ToPscConfigArrayOutputWithContext(ctx context.Context) PscConfigArrayOutput

type PscConfigInput added in v0.32.0

type PscConfigInput interface {
	pulumi.Input

	ToPscConfigOutput() PscConfigOutput
	ToPscConfigOutputWithContext(context.Context) PscConfigOutput
}

PscConfigInput is an input type that accepts PscConfigArgs and PscConfigOutput values. You can construct a concrete instance of `PscConfigInput` via:

PscConfigArgs{...}

type PscConfigOutput added in v0.32.0

type PscConfigOutput struct{ *pulumi.OutputState }

func (PscConfigOutput) ElementType added in v0.32.0

func (PscConfigOutput) ElementType() reflect.Type

func (PscConfigOutput) Network added in v0.32.0

func (o PscConfigOutput) Network() pulumi.StringOutput

The network where the IP address of the discovery endpoint will be reserved, in the form of projects/{network_project}/global/networks/{network_id}.

func (PscConfigOutput) ToPscConfigOutput added in v0.32.0

func (o PscConfigOutput) ToPscConfigOutput() PscConfigOutput

func (PscConfigOutput) ToPscConfigOutputWithContext added in v0.32.0

func (o PscConfigOutput) ToPscConfigOutputWithContext(ctx context.Context) PscConfigOutput

type PscConfigResponse added in v0.32.0

type PscConfigResponse struct {
	// The network where the IP address of the discovery endpoint will be reserved, in the form of projects/{network_project}/global/networks/{network_id}.
	Network string `pulumi:"network"`
}

type PscConfigResponseArrayOutput added in v0.32.0

type PscConfigResponseArrayOutput struct{ *pulumi.OutputState }

func (PscConfigResponseArrayOutput) ElementType added in v0.32.0

func (PscConfigResponseArrayOutput) Index added in v0.32.0

func (PscConfigResponseArrayOutput) ToPscConfigResponseArrayOutput added in v0.32.0

func (o PscConfigResponseArrayOutput) ToPscConfigResponseArrayOutput() PscConfigResponseArrayOutput

func (PscConfigResponseArrayOutput) ToPscConfigResponseArrayOutputWithContext added in v0.32.0

func (o PscConfigResponseArrayOutput) ToPscConfigResponseArrayOutputWithContext(ctx context.Context) PscConfigResponseArrayOutput

type PscConfigResponseOutput added in v0.32.0

type PscConfigResponseOutput struct{ *pulumi.OutputState }

func (PscConfigResponseOutput) ElementType added in v0.32.0

func (PscConfigResponseOutput) ElementType() reflect.Type

func (PscConfigResponseOutput) Network added in v0.32.0

The network where the IP address of the discovery endpoint will be reserved, in the form of projects/{network_project}/global/networks/{network_id}.

func (PscConfigResponseOutput) ToPscConfigResponseOutput added in v0.32.0

func (o PscConfigResponseOutput) ToPscConfigResponseOutput() PscConfigResponseOutput

func (PscConfigResponseOutput) ToPscConfigResponseOutputWithContext added in v0.32.0

func (o PscConfigResponseOutput) ToPscConfigResponseOutputWithContext(ctx context.Context) PscConfigResponseOutput

type PscConnectionResponse added in v0.32.0

type PscConnectionResponse struct {
	// The IP allocated on the consumer network for the PSC forwarding rule.
	Address string `pulumi:"address"`
	// The URI of the consumer side forwarding rule. Example: projects/{projectNumOrId}/regions/us-east1/forwardingRules/{resourceId}.
	ForwardingRule string `pulumi:"forwardingRule"`
	// The consumer network where the IP address resides, in the form of projects/{project_id}/global/networks/{network_id}.
	Network string `pulumi:"network"`
	// The consumer project_id where the forwarding rule is created from.
	Project string `pulumi:"project"`
	// The PSC connection id of the forwarding rule connected to the service attachment.
	PscConnectionId string `pulumi:"pscConnectionId"`
}

Details of consumer resources in a PSC connection.

type PscConnectionResponseArrayOutput added in v0.32.0

type PscConnectionResponseArrayOutput struct{ *pulumi.OutputState }

func (PscConnectionResponseArrayOutput) ElementType added in v0.32.0

func (PscConnectionResponseArrayOutput) Index added in v0.32.0

func (PscConnectionResponseArrayOutput) ToPscConnectionResponseArrayOutput added in v0.32.0

func (o PscConnectionResponseArrayOutput) ToPscConnectionResponseArrayOutput() PscConnectionResponseArrayOutput

func (PscConnectionResponseArrayOutput) ToPscConnectionResponseArrayOutputWithContext added in v0.32.0

func (o PscConnectionResponseArrayOutput) ToPscConnectionResponseArrayOutputWithContext(ctx context.Context) PscConnectionResponseArrayOutput

type PscConnectionResponseOutput added in v0.32.0

type PscConnectionResponseOutput struct{ *pulumi.OutputState }

Details of consumer resources in a PSC connection.

func (PscConnectionResponseOutput) Address added in v0.32.0

The IP allocated on the consumer network for the PSC forwarding rule.

func (PscConnectionResponseOutput) ElementType added in v0.32.0

func (PscConnectionResponseOutput) ForwardingRule added in v0.32.0

func (o PscConnectionResponseOutput) ForwardingRule() pulumi.StringOutput

The URI of the consumer side forwarding rule. Example: projects/{projectNumOrId}/regions/us-east1/forwardingRules/{resourceId}.

func (PscConnectionResponseOutput) Network added in v0.32.0

The consumer network where the IP address resides, in the form of projects/{project_id}/global/networks/{network_id}.

func (PscConnectionResponseOutput) Project added in v0.32.0

The consumer project_id where the forwarding rule is created from.

func (PscConnectionResponseOutput) PscConnectionId added in v0.32.0

func (o PscConnectionResponseOutput) PscConnectionId() pulumi.StringOutput

The PSC connection id of the forwarding rule connected to the service attachment.

func (PscConnectionResponseOutput) ToPscConnectionResponseOutput added in v0.32.0

func (o PscConnectionResponseOutput) ToPscConnectionResponseOutput() PscConnectionResponseOutput

func (PscConnectionResponseOutput) ToPscConnectionResponseOutputWithContext added in v0.32.0

func (o PscConnectionResponseOutput) ToPscConnectionResponseOutputWithContext(ctx context.Context) PscConnectionResponseOutput

type StateInfoResponse added in v0.32.0

type StateInfoResponse struct {
	// Describes ongoing update on the cluster when cluster state is UPDATING.
	UpdateInfo UpdateInfoResponse `pulumi:"updateInfo"`
}

Represents additional information about the state of the cluster.

type StateInfoResponseOutput added in v0.32.0

type StateInfoResponseOutput struct{ *pulumi.OutputState }

Represents additional information about the state of the cluster.

func (StateInfoResponseOutput) ElementType added in v0.32.0

func (StateInfoResponseOutput) ElementType() reflect.Type

func (StateInfoResponseOutput) ToStateInfoResponseOutput added in v0.32.0

func (o StateInfoResponseOutput) ToStateInfoResponseOutput() StateInfoResponseOutput

func (StateInfoResponseOutput) ToStateInfoResponseOutputWithContext added in v0.32.0

func (o StateInfoResponseOutput) ToStateInfoResponseOutputWithContext(ctx context.Context) StateInfoResponseOutput

func (StateInfoResponseOutput) UpdateInfo added in v0.32.0

Describes ongoing update on the cluster when cluster state is UPDATING.

type TimeOfDay added in v0.5.0

type TimeOfDay struct {
	// Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
	Hours *int `pulumi:"hours"`
	// Minutes of hour of day. Must be from 0 to 59.
	Minutes *int `pulumi:"minutes"`
	// Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
	Nanos *int `pulumi:"nanos"`
	// Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
	Seconds *int `pulumi:"seconds"`
}

Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and `google.protobuf.Timestamp`.

type TimeOfDayArgs added in v0.5.0

type TimeOfDayArgs struct {
	// Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
	Hours pulumi.IntPtrInput `pulumi:"hours"`
	// Minutes of hour of day. Must be from 0 to 59.
	Minutes pulumi.IntPtrInput `pulumi:"minutes"`
	// Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
	Nanos pulumi.IntPtrInput `pulumi:"nanos"`
	// Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
	Seconds pulumi.IntPtrInput `pulumi:"seconds"`
}

Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and `google.protobuf.Timestamp`.

func (TimeOfDayArgs) ElementType added in v0.5.0

func (TimeOfDayArgs) ElementType() reflect.Type

func (TimeOfDayArgs) ToTimeOfDayOutput added in v0.5.0

func (i TimeOfDayArgs) ToTimeOfDayOutput() TimeOfDayOutput

func (TimeOfDayArgs) ToTimeOfDayOutputWithContext added in v0.5.0

func (i TimeOfDayArgs) ToTimeOfDayOutputWithContext(ctx context.Context) TimeOfDayOutput

type TimeOfDayInput added in v0.5.0

type TimeOfDayInput interface {
	pulumi.Input

	ToTimeOfDayOutput() TimeOfDayOutput
	ToTimeOfDayOutputWithContext(context.Context) TimeOfDayOutput
}

TimeOfDayInput is an input type that accepts TimeOfDayArgs and TimeOfDayOutput values. You can construct a concrete instance of `TimeOfDayInput` via:

TimeOfDayArgs{...}

type TimeOfDayOutput added in v0.5.0

type TimeOfDayOutput struct{ *pulumi.OutputState }

Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and `google.protobuf.Timestamp`.

func (TimeOfDayOutput) ElementType added in v0.5.0

func (TimeOfDayOutput) ElementType() reflect.Type

func (TimeOfDayOutput) Hours added in v0.5.0

Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.

func (TimeOfDayOutput) Minutes added in v0.5.0

func (o TimeOfDayOutput) Minutes() pulumi.IntPtrOutput

Minutes of hour of day. Must be from 0 to 59.

func (TimeOfDayOutput) Nanos added in v0.5.0

Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.

func (TimeOfDayOutput) Seconds added in v0.5.0

func (o TimeOfDayOutput) Seconds() pulumi.IntPtrOutput

Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.

func (TimeOfDayOutput) ToTimeOfDayOutput added in v0.5.0

func (o TimeOfDayOutput) ToTimeOfDayOutput() TimeOfDayOutput

func (TimeOfDayOutput) ToTimeOfDayOutputWithContext added in v0.5.0

func (o TimeOfDayOutput) ToTimeOfDayOutputWithContext(ctx context.Context) TimeOfDayOutput

type TimeOfDayResponse added in v0.5.0

type TimeOfDayResponse struct {
	// Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
	Hours int `pulumi:"hours"`
	// Minutes of hour of day. Must be from 0 to 59.
	Minutes int `pulumi:"minutes"`
	// Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
	Nanos int `pulumi:"nanos"`
	// Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
	Seconds int `pulumi:"seconds"`
}

Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and `google.protobuf.Timestamp`.

type TimeOfDayResponseOutput added in v0.5.0

type TimeOfDayResponseOutput struct{ *pulumi.OutputState }

Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and `google.protobuf.Timestamp`.

func (TimeOfDayResponseOutput) ElementType added in v0.5.0

func (TimeOfDayResponseOutput) ElementType() reflect.Type

func (TimeOfDayResponseOutput) Hours added in v0.5.0

Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.

func (TimeOfDayResponseOutput) Minutes added in v0.5.0

Minutes of hour of day. Must be from 0 to 59.

func (TimeOfDayResponseOutput) Nanos added in v0.5.0

Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.

func (TimeOfDayResponseOutput) Seconds added in v0.5.0

Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.

func (TimeOfDayResponseOutput) ToTimeOfDayResponseOutput added in v0.5.0

func (o TimeOfDayResponseOutput) ToTimeOfDayResponseOutput() TimeOfDayResponseOutput

func (TimeOfDayResponseOutput) ToTimeOfDayResponseOutputWithContext added in v0.5.0

func (o TimeOfDayResponseOutput) ToTimeOfDayResponseOutputWithContext(ctx context.Context) TimeOfDayResponseOutput

type TlsCertificateResponse

type TlsCertificateResponse struct {
	// PEM representation.
	Cert string `pulumi:"cert"`
	// The time when the certificate was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example `2020-05-18T00:00:00.094Z`.
	CreateTime string `pulumi:"createTime"`
	// The time when the certificate expires in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example `2020-05-18T00:00:00.094Z`.
	ExpireTime string `pulumi:"expireTime"`
	// Serial number, as extracted from the certificate.
	SerialNumber string `pulumi:"serialNumber"`
	// Sha1 Fingerprint of the certificate.
	Sha1Fingerprint string `pulumi:"sha1Fingerprint"`
}

TlsCertificate Resource

type TlsCertificateResponseArrayOutput

type TlsCertificateResponseArrayOutput struct{ *pulumi.OutputState }

func (TlsCertificateResponseArrayOutput) ElementType

func (TlsCertificateResponseArrayOutput) Index

func (TlsCertificateResponseArrayOutput) ToTlsCertificateResponseArrayOutput

func (o TlsCertificateResponseArrayOutput) ToTlsCertificateResponseArrayOutput() TlsCertificateResponseArrayOutput

func (TlsCertificateResponseArrayOutput) ToTlsCertificateResponseArrayOutputWithContext

func (o TlsCertificateResponseArrayOutput) ToTlsCertificateResponseArrayOutputWithContext(ctx context.Context) TlsCertificateResponseArrayOutput

type TlsCertificateResponseOutput

type TlsCertificateResponseOutput struct{ *pulumi.OutputState }

TlsCertificate Resource

func (TlsCertificateResponseOutput) Cert

PEM representation.

func (TlsCertificateResponseOutput) CreateTime

The time when the certificate was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example `2020-05-18T00:00:00.094Z`.

func (TlsCertificateResponseOutput) ElementType

func (TlsCertificateResponseOutput) ExpireTime

The time when the certificate expires in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example `2020-05-18T00:00:00.094Z`.

func (TlsCertificateResponseOutput) SerialNumber

Serial number, as extracted from the certificate.

func (TlsCertificateResponseOutput) Sha1Fingerprint

func (o TlsCertificateResponseOutput) Sha1Fingerprint() pulumi.StringOutput

Sha1 Fingerprint of the certificate.

func (TlsCertificateResponseOutput) ToTlsCertificateResponseOutput

func (o TlsCertificateResponseOutput) ToTlsCertificateResponseOutput() TlsCertificateResponseOutput

func (TlsCertificateResponseOutput) ToTlsCertificateResponseOutputWithContext

func (o TlsCertificateResponseOutput) ToTlsCertificateResponseOutputWithContext(ctx context.Context) TlsCertificateResponseOutput

type UpdateInfoResponse added in v0.32.0

type UpdateInfoResponse struct {
	// Target number of replica nodes per shard.
	TargetReplicaCount int `pulumi:"targetReplicaCount"`
	// Target number of shards for redis cluster
	TargetShardCount int `pulumi:"targetShardCount"`
}

Represents information about an updating cluster.

type UpdateInfoResponseOutput added in v0.32.0

type UpdateInfoResponseOutput struct{ *pulumi.OutputState }

Represents information about an updating cluster.

func (UpdateInfoResponseOutput) ElementType added in v0.32.0

func (UpdateInfoResponseOutput) ElementType() reflect.Type

func (UpdateInfoResponseOutput) TargetReplicaCount added in v0.32.0

func (o UpdateInfoResponseOutput) TargetReplicaCount() pulumi.IntOutput

Target number of replica nodes per shard.

func (UpdateInfoResponseOutput) TargetShardCount added in v0.32.0

func (o UpdateInfoResponseOutput) TargetShardCount() pulumi.IntOutput

Target number of shards for redis cluster

func (UpdateInfoResponseOutput) ToUpdateInfoResponseOutput added in v0.32.0

func (o UpdateInfoResponseOutput) ToUpdateInfoResponseOutput() UpdateInfoResponseOutput

func (UpdateInfoResponseOutput) ToUpdateInfoResponseOutputWithContext added in v0.32.0

func (o UpdateInfoResponseOutput) ToUpdateInfoResponseOutputWithContext(ctx context.Context) UpdateInfoResponseOutput

type WeeklyMaintenanceWindow added in v0.5.0

type WeeklyMaintenanceWindow struct {
	// The day of week that maintenance updates occur.
	Day WeeklyMaintenanceWindowDay `pulumi:"day"`
	// Start time of the window in UTC time.
	StartTime TimeOfDay `pulumi:"startTime"`
}

Time window in which disruptive maintenance updates occur. Non-disruptive updates can occur inside or outside this window.

type WeeklyMaintenanceWindowArgs added in v0.5.0

type WeeklyMaintenanceWindowArgs struct {
	// The day of week that maintenance updates occur.
	Day WeeklyMaintenanceWindowDayInput `pulumi:"day"`
	// Start time of the window in UTC time.
	StartTime TimeOfDayInput `pulumi:"startTime"`
}

Time window in which disruptive maintenance updates occur. Non-disruptive updates can occur inside or outside this window.

func (WeeklyMaintenanceWindowArgs) ElementType added in v0.5.0

func (WeeklyMaintenanceWindowArgs) ToWeeklyMaintenanceWindowOutput added in v0.5.0

func (i WeeklyMaintenanceWindowArgs) ToWeeklyMaintenanceWindowOutput() WeeklyMaintenanceWindowOutput

func (WeeklyMaintenanceWindowArgs) ToWeeklyMaintenanceWindowOutputWithContext added in v0.5.0

func (i WeeklyMaintenanceWindowArgs) ToWeeklyMaintenanceWindowOutputWithContext(ctx context.Context) WeeklyMaintenanceWindowOutput

type WeeklyMaintenanceWindowArray added in v0.5.0

type WeeklyMaintenanceWindowArray []WeeklyMaintenanceWindowInput

func (WeeklyMaintenanceWindowArray) ElementType added in v0.5.0

func (WeeklyMaintenanceWindowArray) ToWeeklyMaintenanceWindowArrayOutput added in v0.5.0

func (i WeeklyMaintenanceWindowArray) ToWeeklyMaintenanceWindowArrayOutput() WeeklyMaintenanceWindowArrayOutput

func (WeeklyMaintenanceWindowArray) ToWeeklyMaintenanceWindowArrayOutputWithContext added in v0.5.0

func (i WeeklyMaintenanceWindowArray) ToWeeklyMaintenanceWindowArrayOutputWithContext(ctx context.Context) WeeklyMaintenanceWindowArrayOutput

type WeeklyMaintenanceWindowArrayInput added in v0.5.0

type WeeklyMaintenanceWindowArrayInput interface {
	pulumi.Input

	ToWeeklyMaintenanceWindowArrayOutput() WeeklyMaintenanceWindowArrayOutput
	ToWeeklyMaintenanceWindowArrayOutputWithContext(context.Context) WeeklyMaintenanceWindowArrayOutput
}

WeeklyMaintenanceWindowArrayInput is an input type that accepts WeeklyMaintenanceWindowArray and WeeklyMaintenanceWindowArrayOutput values. You can construct a concrete instance of `WeeklyMaintenanceWindowArrayInput` via:

WeeklyMaintenanceWindowArray{ WeeklyMaintenanceWindowArgs{...} }

type WeeklyMaintenanceWindowArrayOutput added in v0.5.0

type WeeklyMaintenanceWindowArrayOutput struct{ *pulumi.OutputState }

func (WeeklyMaintenanceWindowArrayOutput) ElementType added in v0.5.0

func (WeeklyMaintenanceWindowArrayOutput) Index added in v0.5.0

func (WeeklyMaintenanceWindowArrayOutput) ToWeeklyMaintenanceWindowArrayOutput added in v0.5.0

func (o WeeklyMaintenanceWindowArrayOutput) ToWeeklyMaintenanceWindowArrayOutput() WeeklyMaintenanceWindowArrayOutput

func (WeeklyMaintenanceWindowArrayOutput) ToWeeklyMaintenanceWindowArrayOutputWithContext added in v0.5.0

func (o WeeklyMaintenanceWindowArrayOutput) ToWeeklyMaintenanceWindowArrayOutputWithContext(ctx context.Context) WeeklyMaintenanceWindowArrayOutput

type WeeklyMaintenanceWindowDay added in v0.5.0

type WeeklyMaintenanceWindowDay string

Required. The day of week that maintenance updates occur.

func (WeeklyMaintenanceWindowDay) ElementType added in v0.5.0

func (WeeklyMaintenanceWindowDay) ElementType() reflect.Type

func (WeeklyMaintenanceWindowDay) ToStringOutput added in v0.5.0

func (e WeeklyMaintenanceWindowDay) ToStringOutput() pulumi.StringOutput

func (WeeklyMaintenanceWindowDay) ToStringOutputWithContext added in v0.5.0

func (e WeeklyMaintenanceWindowDay) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (WeeklyMaintenanceWindowDay) ToStringPtrOutput added in v0.5.0

func (e WeeklyMaintenanceWindowDay) ToStringPtrOutput() pulumi.StringPtrOutput

func (WeeklyMaintenanceWindowDay) ToStringPtrOutputWithContext added in v0.5.0

func (e WeeklyMaintenanceWindowDay) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

func (WeeklyMaintenanceWindowDay) ToWeeklyMaintenanceWindowDayOutput added in v0.6.0

func (e WeeklyMaintenanceWindowDay) ToWeeklyMaintenanceWindowDayOutput() WeeklyMaintenanceWindowDayOutput

func (WeeklyMaintenanceWindowDay) ToWeeklyMaintenanceWindowDayOutputWithContext added in v0.6.0

func (e WeeklyMaintenanceWindowDay) ToWeeklyMaintenanceWindowDayOutputWithContext(ctx context.Context) WeeklyMaintenanceWindowDayOutput

func (WeeklyMaintenanceWindowDay) ToWeeklyMaintenanceWindowDayPtrOutput added in v0.6.0

func (e WeeklyMaintenanceWindowDay) ToWeeklyMaintenanceWindowDayPtrOutput() WeeklyMaintenanceWindowDayPtrOutput

func (WeeklyMaintenanceWindowDay) ToWeeklyMaintenanceWindowDayPtrOutputWithContext added in v0.6.0

func (e WeeklyMaintenanceWindowDay) ToWeeklyMaintenanceWindowDayPtrOutputWithContext(ctx context.Context) WeeklyMaintenanceWindowDayPtrOutput

type WeeklyMaintenanceWindowDayInput added in v0.6.0

type WeeklyMaintenanceWindowDayInput interface {
	pulumi.Input

	ToWeeklyMaintenanceWindowDayOutput() WeeklyMaintenanceWindowDayOutput
	ToWeeklyMaintenanceWindowDayOutputWithContext(context.Context) WeeklyMaintenanceWindowDayOutput
}

WeeklyMaintenanceWindowDayInput is an input type that accepts WeeklyMaintenanceWindowDayArgs and WeeklyMaintenanceWindowDayOutput values. You can construct a concrete instance of `WeeklyMaintenanceWindowDayInput` via:

WeeklyMaintenanceWindowDayArgs{...}

type WeeklyMaintenanceWindowDayOutput added in v0.6.0

type WeeklyMaintenanceWindowDayOutput struct{ *pulumi.OutputState }

func (WeeklyMaintenanceWindowDayOutput) ElementType added in v0.6.0

func (WeeklyMaintenanceWindowDayOutput) ToStringOutput added in v0.6.0

func (WeeklyMaintenanceWindowDayOutput) ToStringOutputWithContext added in v0.6.0

func (o WeeklyMaintenanceWindowDayOutput) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (WeeklyMaintenanceWindowDayOutput) ToStringPtrOutput added in v0.6.0

func (WeeklyMaintenanceWindowDayOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o WeeklyMaintenanceWindowDayOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

func (WeeklyMaintenanceWindowDayOutput) ToWeeklyMaintenanceWindowDayOutput added in v0.6.0

func (o WeeklyMaintenanceWindowDayOutput) ToWeeklyMaintenanceWindowDayOutput() WeeklyMaintenanceWindowDayOutput

func (WeeklyMaintenanceWindowDayOutput) ToWeeklyMaintenanceWindowDayOutputWithContext added in v0.6.0

func (o WeeklyMaintenanceWindowDayOutput) ToWeeklyMaintenanceWindowDayOutputWithContext(ctx context.Context) WeeklyMaintenanceWindowDayOutput

func (WeeklyMaintenanceWindowDayOutput) ToWeeklyMaintenanceWindowDayPtrOutput added in v0.6.0

func (o WeeklyMaintenanceWindowDayOutput) ToWeeklyMaintenanceWindowDayPtrOutput() WeeklyMaintenanceWindowDayPtrOutput

func (WeeklyMaintenanceWindowDayOutput) ToWeeklyMaintenanceWindowDayPtrOutputWithContext added in v0.6.0

func (o WeeklyMaintenanceWindowDayOutput) ToWeeklyMaintenanceWindowDayPtrOutputWithContext(ctx context.Context) WeeklyMaintenanceWindowDayPtrOutput

type WeeklyMaintenanceWindowDayPtrInput added in v0.6.0

type WeeklyMaintenanceWindowDayPtrInput interface {
	pulumi.Input

	ToWeeklyMaintenanceWindowDayPtrOutput() WeeklyMaintenanceWindowDayPtrOutput
	ToWeeklyMaintenanceWindowDayPtrOutputWithContext(context.Context) WeeklyMaintenanceWindowDayPtrOutput
}

func WeeklyMaintenanceWindowDayPtr added in v0.6.0

func WeeklyMaintenanceWindowDayPtr(v string) WeeklyMaintenanceWindowDayPtrInput

type WeeklyMaintenanceWindowDayPtrOutput added in v0.6.0

type WeeklyMaintenanceWindowDayPtrOutput struct{ *pulumi.OutputState }

func (WeeklyMaintenanceWindowDayPtrOutput) Elem added in v0.6.0

func (WeeklyMaintenanceWindowDayPtrOutput) ElementType added in v0.6.0

func (WeeklyMaintenanceWindowDayPtrOutput) ToStringPtrOutput added in v0.6.0

func (WeeklyMaintenanceWindowDayPtrOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o WeeklyMaintenanceWindowDayPtrOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

func (WeeklyMaintenanceWindowDayPtrOutput) ToWeeklyMaintenanceWindowDayPtrOutput added in v0.6.0

func (o WeeklyMaintenanceWindowDayPtrOutput) ToWeeklyMaintenanceWindowDayPtrOutput() WeeklyMaintenanceWindowDayPtrOutput

func (WeeklyMaintenanceWindowDayPtrOutput) ToWeeklyMaintenanceWindowDayPtrOutputWithContext added in v0.6.0

func (o WeeklyMaintenanceWindowDayPtrOutput) ToWeeklyMaintenanceWindowDayPtrOutputWithContext(ctx context.Context) WeeklyMaintenanceWindowDayPtrOutput

type WeeklyMaintenanceWindowInput added in v0.5.0

type WeeklyMaintenanceWindowInput interface {
	pulumi.Input

	ToWeeklyMaintenanceWindowOutput() WeeklyMaintenanceWindowOutput
	ToWeeklyMaintenanceWindowOutputWithContext(context.Context) WeeklyMaintenanceWindowOutput
}

WeeklyMaintenanceWindowInput is an input type that accepts WeeklyMaintenanceWindowArgs and WeeklyMaintenanceWindowOutput values. You can construct a concrete instance of `WeeklyMaintenanceWindowInput` via:

WeeklyMaintenanceWindowArgs{...}

type WeeklyMaintenanceWindowOutput added in v0.5.0

type WeeklyMaintenanceWindowOutput struct{ *pulumi.OutputState }

Time window in which disruptive maintenance updates occur. Non-disruptive updates can occur inside or outside this window.

func (WeeklyMaintenanceWindowOutput) Day added in v0.5.0

The day of week that maintenance updates occur.

func (WeeklyMaintenanceWindowOutput) ElementType added in v0.5.0

func (WeeklyMaintenanceWindowOutput) StartTime added in v0.5.0

Start time of the window in UTC time.

func (WeeklyMaintenanceWindowOutput) ToWeeklyMaintenanceWindowOutput added in v0.5.0

func (o WeeklyMaintenanceWindowOutput) ToWeeklyMaintenanceWindowOutput() WeeklyMaintenanceWindowOutput

func (WeeklyMaintenanceWindowOutput) ToWeeklyMaintenanceWindowOutputWithContext added in v0.5.0

func (o WeeklyMaintenanceWindowOutput) ToWeeklyMaintenanceWindowOutputWithContext(ctx context.Context) WeeklyMaintenanceWindowOutput

type WeeklyMaintenanceWindowResponse added in v0.5.0

type WeeklyMaintenanceWindowResponse struct {
	// The day of week that maintenance updates occur.
	Day string `pulumi:"day"`
	// Duration of the maintenance window. The current window is fixed at 1 hour.
	Duration string `pulumi:"duration"`
	// Start time of the window in UTC time.
	StartTime TimeOfDayResponse `pulumi:"startTime"`
}

Time window in which disruptive maintenance updates occur. Non-disruptive updates can occur inside or outside this window.

type WeeklyMaintenanceWindowResponseArrayOutput added in v0.5.0

type WeeklyMaintenanceWindowResponseArrayOutput struct{ *pulumi.OutputState }

func (WeeklyMaintenanceWindowResponseArrayOutput) ElementType added in v0.5.0

func (WeeklyMaintenanceWindowResponseArrayOutput) Index added in v0.5.0

func (WeeklyMaintenanceWindowResponseArrayOutput) ToWeeklyMaintenanceWindowResponseArrayOutput added in v0.5.0

func (o WeeklyMaintenanceWindowResponseArrayOutput) ToWeeklyMaintenanceWindowResponseArrayOutput() WeeklyMaintenanceWindowResponseArrayOutput

func (WeeklyMaintenanceWindowResponseArrayOutput) ToWeeklyMaintenanceWindowResponseArrayOutputWithContext added in v0.5.0

func (o WeeklyMaintenanceWindowResponseArrayOutput) ToWeeklyMaintenanceWindowResponseArrayOutputWithContext(ctx context.Context) WeeklyMaintenanceWindowResponseArrayOutput

type WeeklyMaintenanceWindowResponseOutput added in v0.5.0

type WeeklyMaintenanceWindowResponseOutput struct{ *pulumi.OutputState }

Time window in which disruptive maintenance updates occur. Non-disruptive updates can occur inside or outside this window.

func (WeeklyMaintenanceWindowResponseOutput) Day added in v0.5.0

The day of week that maintenance updates occur.

func (WeeklyMaintenanceWindowResponseOutput) Duration added in v0.5.0

Duration of the maintenance window. The current window is fixed at 1 hour.

func (WeeklyMaintenanceWindowResponseOutput) ElementType added in v0.5.0

func (WeeklyMaintenanceWindowResponseOutput) StartTime added in v0.5.0

Start time of the window in UTC time.

func (WeeklyMaintenanceWindowResponseOutput) ToWeeklyMaintenanceWindowResponseOutput added in v0.5.0

func (o WeeklyMaintenanceWindowResponseOutput) ToWeeklyMaintenanceWindowResponseOutput() WeeklyMaintenanceWindowResponseOutput

func (WeeklyMaintenanceWindowResponseOutput) ToWeeklyMaintenanceWindowResponseOutputWithContext added in v0.5.0

func (o WeeklyMaintenanceWindowResponseOutput) ToWeeklyMaintenanceWindowResponseOutputWithContext(ctx context.Context) WeeklyMaintenanceWindowResponseOutput

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL