Instance

com.google.cloud.redis.v1.cloud_redis.Instance
See theInstance companion object
final case class Instance(name: String, displayName: String, labels: Map[String, String], locationId: String, alternativeLocationId: String, redisVersion: String, reservedIpRange: String, secondaryIpRange: String, host: String, port: Int, currentLocationId: String, createTime: Option[Timestamp], state: State, statusMessage: String, redisConfigs: Map[String, String], tier: Tier, memorySizeGb: Int, authorizedNetwork: String, persistenceIamIdentity: String, connectMode: ConnectMode, authEnabled: Boolean, serverCaCerts: Seq[TlsCertificate], transitEncryptionMode: TransitEncryptionMode, maintenancePolicy: Option[MaintenancePolicy], maintenanceSchedule: Option[MaintenanceSchedule], replicaCount: Int, nodes: Seq[NodeInfo], readEndpoint: String, readEndpointPort: Int, readReplicasMode: ReadReplicasMode, customerManagedKey: String, persistenceConfig: Option[PersistenceConfig], suspensionReasons: Seq[SuspensionReason], maintenanceVersion: String, availableMaintenanceVersions: Seq[String], unknownFields: UnknownFieldSet) extends GeneratedMessage, Updatable[Instance]

A Memorystore for Redis instance.

Value parameters

alternativeLocationId

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.

authEnabled

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.

authorizedNetwork

Optional. The full name of the Google Compute Engine network to which the instance is connected. If left unspecified, the default network will be used.

availableMaintenanceVersions

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

connectMode

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

createTime

Output only. The time the instance was created.

currentLocationId

Output only. 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.

customerManagedKey

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

displayName

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

host

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

labels

Resource labels to represent user provided metadata

locationId

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.

maintenancePolicy

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

maintenanceSchedule

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

maintenanceVersion

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

memorySizeGb

Required. Redis memory size in GiB.

name

Required. 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][google.cloud.redis.v1.Instance.location_id] and [alternative_location_id][google.cloud.redis.v1.Instance.alternative_location_id] fields for more details.

nodes

Output only. Info per node.

persistenceConfig

Optional. Persistence configuration parameters

persistenceIamIdentity

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

port

Output only. The port number of the exposed Redis endpoint.

readEndpoint

Output only. 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'.

readEndpointPort

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

readReplicasMode

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

redisConfigs

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
redisVersion

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
replicaCount

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.

reservedIpRange

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.

secondaryIpRange

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".

serverCaCerts

Output only. List of server CA certificates for the instance.

state

Output only. The current state of this instance.

statusMessage

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

suspensionReasons

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

tier

Required. The service tier of the instance.

transitEncryptionMode

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

Attributes

Companion
object
Source
Instance.scala
Graph
Supertypes
trait Updatable[Instance]
trait GeneratedMessage
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala
def addLabels(`__vs`: (String, String)*): Instance

Attributes

Source
Instance.scala
def addNodes(`__vs`: NodeInfo*): Instance

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala
def companion: Instance.type

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala
def getField(`__field`: FieldDescriptor): PValue

Attributes

Source
Instance.scala
def getFieldByNumber(`__fieldNumber`: Int): Any

Attributes

Source
Instance.scala
override def serializedSize: Int

Attributes

Definition Classes
GeneratedMessage
Source
Instance.scala

Returns a human-readable ASCII format representation of this message.

Returns a human-readable ASCII format representation of this message.

The original message can be decoded from this format by using fromAscii on the companion object.

Attributes

Returns

human-readable representation of this message.

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala
def withHost(`__v`: String): Instance

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala
def withName(`__v`: String): Instance

Attributes

Source
Instance.scala
def withNodes(`__v`: Seq[NodeInfo]): Instance

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala
def withPort(`__v`: Int): Instance

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala
def withState(`__v`: State): Instance

Attributes

Source
Instance.scala

Attributes

Source
Instance.scala
def withTier(`__v`: Tier): Instance

Attributes

Source
Instance.scala
def withUnknownFields(`__v`: UnknownFieldSet): Instance

Attributes

Source
Instance.scala
def writeTo(`_output__`: CodedOutputStream): Unit

Serializes the message into the given coded output stream

Serializes the message into the given coded output stream

Attributes

Source
Instance.scala

Inherited methods

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product
final def toByteArray: Array[Byte]

Serializes the message and returns a byte array containing its raw bytes

Serializes the message and returns a byte array containing its raw bytes

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala
final def toByteString: ByteString

Serializes the message and returns a ByteString containing its raw bytes

Serializes the message and returns a ByteString containing its raw bytes

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala
final def toPMessage: PMessage

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala
def update(ms: Lens[Instance, Instance] => () => Instance*): A

Attributes

Inherited from:
Updatable
Source
Lenses.scala
final def writeDelimitedTo(output: OutputStream): Unit

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala
final def writeTo(output: OutputStream): Unit

Serializes the message into the given output stream

Serializes the message into the given output stream

Attributes

Inherited from:
GeneratedMessage
Source
GeneratedMessageCompanion.scala