class Google::Apis::MemcacheV1beta2::Instance

A Memorystore for Memcached instance

Attributes

authorized_network[RW]

The full name of the Google Compute Engine [network](cloud.google.com/ vpc/docs/vpc) to which the instance is connected. If left unspecified, the ` default` network will be used. Corresponds to the JSON property `authorizedNetwork` @return [String]

create_time[RW]

Output only. The time the instance was created. Corresponds to the JSON property `createTime` @return [String]

discovery_endpoint[RW]

Output only. Endpoint for the Discovery API. Corresponds to the JSON property `discoveryEndpoint` @return [String]

display_name[RW]

User provided name for the instance, which is only used for display purposes. Cannot be more than 80 characters. Corresponds to the JSON property `displayName` @return [String]

instance_messages[RW]

List of messages that describe the current state of the Memcached instance. Corresponds to the JSON property `instanceMessages` @return [Array<Google::Apis::MemcacheV1beta2::InstanceMessage>]

labels[RW]

Resource labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. cloud.google.com/compute/ docs/labeling-resources Corresponds to the JSON property `labels` @return [Hash<String,String>]

memcache_full_version[RW]

Output only. The full version of memcached server running on this instance. System automatically determines the full memcached version for an instance based on the input MemcacheVersion. The full version format will be “memcached- 1.5.16”. Corresponds to the JSON property `memcacheFullVersion` @return [String]

memcache_nodes[RW]

Output only. List of Memcached nodes. Refer to Node message for more details. Corresponds to the JSON property `memcacheNodes` @return [Array<Google::Apis::MemcacheV1beta2::Node>]

memcache_version[RW]

The major version of Memcached software. If not provided, latest supported version will be used. Currently the latest supported major version is ` MEMCACHE_1_5`. The minor version will be automatically determined by our system based on the latest supported minor version. Corresponds to the JSON property `memcacheVersion` @return [String]

name[RW]

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: Memcached instances are managed and addressed at the regional level so `location_id` here refers to a Google Cloud region; however, users may choose which zones Memcached nodes should be provisioned in within an instance. Refer to zones field for more details. Corresponds to the JSON property `name` @return [String]

node_config[RW]

Configuration for a Memcached Node. Corresponds to the JSON property `nodeConfig` @return [Google::Apis::MemcacheV1beta2::NodeConfig]

node_count[RW]

Required. Number of nodes in the Memcached instance. Corresponds to the JSON property `nodeCount` @return [Fixnum]

parameters[RW]

The unique ID associated with this set of parameters. Users can use this id to determine if the parameters associated with the instance differ from the parameters associated with the nodes. A discrepancy between parameter ids can inform users that they may need to take action to apply parameters on nodes. Corresponds to the JSON property `parameters` @return [Google::Apis::MemcacheV1beta2::MemcacheParameters]

state[RW]

Output only. The state of this Memcached instance. Corresponds to the JSON property `state` @return [String]

update_available[RW]

Output only. Returns true if there is an update waiting to be applied Corresponds to the JSON property `updateAvailable` @return [Boolean]

update_available?[RW]

Output only. Returns true if there is an update waiting to be applied Corresponds to the JSON property `updateAvailable` @return [Boolean]

update_time[RW]

Output only. The time the instance was updated. Corresponds to the JSON property `updateTime` @return [String]

zones[RW]

Zones in which Memcached nodes should be provisioned. Memcached nodes will be equally distributed across these zones. If not provided, the service will by default create nodes in all zones in the region for the instance. Corresponds to the JSON property `zones` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/memcache_v1beta2/classes.rb, line 809
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/memcache_v1beta2/classes.rb, line 814
def update!(**args)
  @authorized_network = args[:authorized_network] if args.key?(:authorized_network)
  @create_time = args[:create_time] if args.key?(:create_time)
  @discovery_endpoint = args[:discovery_endpoint] if args.key?(:discovery_endpoint)
  @display_name = args[:display_name] if args.key?(:display_name)
  @instance_messages = args[:instance_messages] if args.key?(:instance_messages)
  @labels = args[:labels] if args.key?(:labels)
  @memcache_full_version = args[:memcache_full_version] if args.key?(:memcache_full_version)
  @memcache_nodes = args[:memcache_nodes] if args.key?(:memcache_nodes)
  @memcache_version = args[:memcache_version] if args.key?(:memcache_version)
  @name = args[:name] if args.key?(:name)
  @node_config = args[:node_config] if args.key?(:node_config)
  @node_count = args[:node_count] if args.key?(:node_count)
  @parameters = args[:parameters] if args.key?(:parameters)
  @state = args[:state] if args.key?(:state)
  @update_available = args[:update_available] if args.key?(:update_available)
  @update_time = args[:update_time] if args.key?(:update_time)
  @zones = args[:zones] if args.key?(:zones)
end