2018-09-07 00:36:30 +00:00
|
|
|
# Copyright 2015 Google Inc.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
require 'date'
|
|
|
|
require 'google/apis/core/base_service'
|
|
|
|
require 'google/apis/core/json_representation'
|
|
|
|
require 'google/apis/core/hashable'
|
|
|
|
require 'google/apis/errors'
|
|
|
|
|
|
|
|
module Google
|
|
|
|
module Apis
|
|
|
|
module RedisV1
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
|
|
|
# messages in your APIs. A typical example is to use it as the request or the
|
|
|
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
|
|
|
# protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
|
|
|
|
# `Empty` is empty JSON object ````.
|
2018-09-07 00:36:30 +00:00
|
|
|
class Empty
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-02 00:37:51 +00:00
|
|
|
# Request for Export.
|
|
|
|
class ExportInstanceRequest
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The output content
|
|
|
|
# Corresponds to the JSON property `outputConfig`
|
|
|
|
# @return [Google::Apis::RedisV1::OutputConfig]
|
|
|
|
attr_accessor :output_config
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@output_config = args[:output_config] if args.key?(:output_config)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-29 00:37:48 +00:00
|
|
|
# Request for Failover.
|
|
|
|
class FailoverInstanceRequest
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Optional. Available data protection modes that the user can choose. If it's
|
|
|
|
# unspecified, data protection mode will be LIMITED_DATA_LOSS by default.
|
|
|
|
# Corresponds to the JSON property `dataProtectionMode`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :data_protection_mode
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@data_protection_mode = args[:data_protection_mode] if args.key?(:data_protection_mode)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-09 00:37:30 +00:00
|
|
|
# The Cloud Storage location for the output content
|
2019-06-02 00:37:51 +00:00
|
|
|
class GcsDestination
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Required. Data destination URI (e.g. 'gs://my_bucket/my_object'). Existing
|
|
|
|
# files will be overwritten.
|
2019-06-02 00:37:51 +00:00
|
|
|
# Corresponds to the JSON property `uri`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :uri
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@uri = args[:uri] if args.key?(:uri)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-09 00:37:30 +00:00
|
|
|
# The Cloud Storage location for the input content
|
2019-06-02 00:37:51 +00:00
|
|
|
class GcsSource
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Required. Source data URI. (e.g. 'gs://my_bucket/my_object').
|
|
|
|
# Corresponds to the JSON property `uri`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :uri
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@uri = args[:uri] if args.key?(:uri)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# This location metadata represents additional configuration options for a given
|
|
|
|
# location where a Redis instance may be created. All fields are output only. It
|
|
|
|
# is returned as content of the `google.cloud.location.Location.metadata` field.
|
2018-09-07 00:36:30 +00:00
|
|
|
class GoogleCloudRedisV1LocationMetadata
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Output only. The set of available zones in the location. The map is keyed by
|
|
|
|
# the lowercase ID of each zone, as defined by GCE. These keys can be specified
|
|
|
|
# in `location_id` or `alternative_location_id` fields when creating a Redis
|
|
|
|
# instance.
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `availableZones`
|
|
|
|
# @return [Hash<String,Google::Apis::RedisV1::GoogleCloudRedisV1ZoneMetadata>]
|
|
|
|
attr_accessor :available_zones
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@available_zones = args[:available_zones] if args.key?(:available_zones)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Represents the v1 metadata of the long-running operation.
|
|
|
|
class GoogleCloudRedisV1OperationMetadata
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# API version.
|
|
|
|
# Corresponds to the JSON property `apiVersion`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :api_version
|
|
|
|
|
2018-09-29 00:36:03 +00:00
|
|
|
# Specifies if cancellation was requested for the operation.
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `cancelRequested`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :cancel_requested
|
|
|
|
alias_method :cancel_requested?, :cancel_requested
|
|
|
|
|
|
|
|
# Creation timestamp.
|
|
|
|
# Corresponds to the JSON property `createTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :create_time
|
|
|
|
|
|
|
|
# End timestamp.
|
|
|
|
# Corresponds to the JSON property `endTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :end_time
|
|
|
|
|
|
|
|
# Operation status details.
|
|
|
|
# Corresponds to the JSON property `statusDetail`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :status_detail
|
|
|
|
|
|
|
|
# Operation target.
|
|
|
|
# Corresponds to the JSON property `target`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :target
|
|
|
|
|
|
|
|
# Operation verb.
|
|
|
|
# Corresponds to the JSON property `verb`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :verb
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@api_version = args[:api_version] if args.key?(:api_version)
|
|
|
|
@cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
|
|
|
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
|
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
|
|
@status_detail = args[:status_detail] if args.key?(:status_detail)
|
|
|
|
@target = args[:target] if args.key?(:target)
|
|
|
|
@verb = args[:verb] if args.key?(:verb)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Defines specific information for a particular zone. Currently empty and
|
|
|
|
# reserved for future use only.
|
|
|
|
class GoogleCloudRedisV1ZoneMetadata
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-07-24 00:38:50 +00:00
|
|
|
#
|
|
|
|
class GoogleCloudSaasacceleratorManagementProvidersV1Instance
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# consumer_defined_name is the name that is set by the consumer. On the other
|
2020-08-13 00:39:19 +00:00
|
|
|
# hand Name field represents system-assigned id of an instance so consumers are
|
|
|
|
# not necessarily aware of it. consumer_defined_name is used for notification/UI
|
|
|
|
# purposes for consumer to recognize their instances.
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `consumerDefinedName`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :consumer_defined_name
|
|
|
|
|
|
|
|
# Output only. Timestamp when the resource was created.
|
|
|
|
# Corresponds to the JSON property `createTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :create_time
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Optional. Resource labels to represent user provided metadata. Each label is a
|
|
|
|
# key-value pair, where both the key and the value are arbitrary strings
|
2020-07-24 00:38:50 +00:00
|
|
|
# provided by the user.
|
|
|
|
# Corresponds to the JSON property `labels`
|
|
|
|
# @return [Hash<String,String>]
|
|
|
|
attr_accessor :labels
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# The MaintenancePolicies that have been attached to the instance. The key must
|
|
|
|
# be of the type name of the oneof policy name defined in MaintenancePolicy, and
|
|
|
|
# the referenced policy must define the same policy type. For complete details
|
|
|
|
# of MaintenancePolicy, please refer to go/cloud-saas-mw-ug.
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `maintenancePolicyNames`
|
|
|
|
# @return [Hash<String,String>]
|
|
|
|
attr_accessor :maintenance_policy_names
|
|
|
|
|
|
|
|
# The MaintenanceSchedule contains the scheduling information of published
|
|
|
|
# maintenance schedule.
|
|
|
|
# Corresponds to the JSON property `maintenanceSchedules`
|
|
|
|
# @return [Hash<String,Google::Apis::RedisV1::GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule>]
|
|
|
|
attr_accessor :maintenance_schedules
|
|
|
|
|
|
|
|
# Maintenance settings associated with instance. Allows service producers and
|
|
|
|
# end users to assign settings that controls maintenance on this instance.
|
|
|
|
# Corresponds to the JSON property `maintenanceSettings`
|
|
|
|
# @return [Google::Apis::RedisV1::GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings]
|
|
|
|
attr_accessor :maintenance_settings
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Unique name of the resource. It uses the form: `projects/`project_id`/
|
|
|
|
# locations/`location_id`/instances/`instance_id``
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `name`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :name
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Output only. Custom string attributes used primarily to expose producer-
|
|
|
|
# specific information in monitoring dashboards. See go/get-instance-metadata.
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `producerMetadata`
|
|
|
|
# @return [Hash<String,String>]
|
|
|
|
attr_accessor :producer_metadata
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Output only. The list of data plane resources provisioned for this instance, e.
|
|
|
|
# g. compute VMs. See go/get-instance-metadata.
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `provisionedResources`
|
|
|
|
# @return [Array<Google::Apis::RedisV1::GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource>]
|
|
|
|
attr_accessor :provisioned_resources
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Link to the SLM instance template. Only populated when updating SLM instances
|
|
|
|
# via SSA's Actuation service adaptor. Service producers with custom control
|
|
|
|
# plane (e.g. Cloud SQL) doesn't need to populate this field. Instead they
|
|
|
|
# should use software_versions.
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `slmInstanceTemplate`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :slm_instance_template
|
|
|
|
|
|
|
|
# SloMetadata contains resources required for proper SLO classification of the
|
|
|
|
# instance.
|
|
|
|
# Corresponds to the JSON property `sloMetadata`
|
|
|
|
# @return [Google::Apis::RedisV1::GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata]
|
|
|
|
attr_accessor :slo_metadata
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Software versions that are used to deploy this instance. This can be mutated
|
|
|
|
# by rollout services.
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `softwareVersions`
|
|
|
|
# @return [Hash<String,String>]
|
|
|
|
attr_accessor :software_versions
|
|
|
|
|
|
|
|
# Output only. Current lifecycle state of the resource (e.g. if it's being
|
|
|
|
# created or ready to use).
|
|
|
|
# Corresponds to the JSON property `state`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :state
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Output only. ID of the associated GCP tenant project. See go/get-instance-
|
|
|
|
# metadata.
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `tenantProjectId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :tenant_project_id
|
|
|
|
|
|
|
|
# Output only. Timestamp when the resource was last modified.
|
|
|
|
# Corresponds to the JSON property `updateTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :update_time
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@consumer_defined_name = args[:consumer_defined_name] if args.key?(:consumer_defined_name)
|
|
|
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
|
|
@labels = args[:labels] if args.key?(:labels)
|
|
|
|
@maintenance_policy_names = args[:maintenance_policy_names] if args.key?(:maintenance_policy_names)
|
|
|
|
@maintenance_schedules = args[:maintenance_schedules] if args.key?(:maintenance_schedules)
|
|
|
|
@maintenance_settings = args[:maintenance_settings] if args.key?(:maintenance_settings)
|
|
|
|
@name = args[:name] if args.key?(:name)
|
|
|
|
@producer_metadata = args[:producer_metadata] if args.key?(:producer_metadata)
|
|
|
|
@provisioned_resources = args[:provisioned_resources] if args.key?(:provisioned_resources)
|
|
|
|
@slm_instance_template = args[:slm_instance_template] if args.key?(:slm_instance_template)
|
|
|
|
@slo_metadata = args[:slo_metadata] if args.key?(:slo_metadata)
|
|
|
|
@software_versions = args[:software_versions] if args.key?(:software_versions)
|
|
|
|
@state = args[:state] if args.key?(:state)
|
|
|
|
@tenant_project_id = args[:tenant_project_id] if args.key?(:tenant_project_id)
|
|
|
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Maintenance schedule which is exposed to customer and potentially end user,
|
|
|
|
# indicating published upcoming future maintenance schedule
|
|
|
|
class GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Can this scheduled update be rescheduled? By default, it's true and API needs
|
|
|
|
# to do explicitly check whether it's set, if it's set as false explicitly, it's
|
|
|
|
# false
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `canReschedule`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_reschedule
|
|
|
|
alias_method :can_reschedule?, :can_reschedule
|
|
|
|
|
|
|
|
# The scheduled end time for the maintenance.
|
|
|
|
# Corresponds to the JSON property `endTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :end_time
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# The rollout management policy this maintenance schedule is associated with.
|
|
|
|
# When doing reschedule update request, the reschedule should be against this
|
|
|
|
# given policy.
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `rolloutManagementPolicy`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :rollout_management_policy
|
|
|
|
|
|
|
|
# The scheduled start time for the maintenance.
|
|
|
|
# Corresponds to the JSON property `startTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :start_time
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@can_reschedule = args[:can_reschedule] if args.key?(:can_reschedule)
|
|
|
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
|
|
@rollout_management_policy = args[:rollout_management_policy] if args.key?(:rollout_management_policy)
|
|
|
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Maintenance settings associated with instance. Allows service producers and
|
|
|
|
# end users to assign settings that controls maintenance on this instance.
|
|
|
|
class GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Optional. Exclude instance from maintenance. When true, rollout service will
|
2020-08-13 00:39:19 +00:00
|
|
|
# not attempt maintenance on the instance. Rollout service will include the
|
2020-07-24 00:38:50 +00:00
|
|
|
# instance in reported rollout progress as not attempted.
|
|
|
|
# Corresponds to the JSON property `exclude`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :exclude
|
|
|
|
alias_method :exclude?, :exclude
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@exclude = args[:exclude] if args.key?(:exclude)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Node information for custom per-node SLO implementations. SSA does not support
|
|
|
|
# per-node SLO, but producers can populate per-node information in SloMetadata
|
|
|
|
# for custom precomputations. SSA Eligibility Exporter will emit per-node metric
|
|
|
|
# based on this information.
|
2020-07-24 00:38:50 +00:00
|
|
|
class GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# By default node is eligible if instance is eligible. But individual node might
|
|
|
|
# be excluded from SLO by adding entry here. For semantic see SloMetadata.
|
|
|
|
# exclusions. If both instance and node level exclusions are present for time
|
|
|
|
# period, the node level's reason will be reported by Eligibility Exporter.
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `exclusions`
|
|
|
|
# @return [Array<Google::Apis::RedisV1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>]
|
|
|
|
attr_accessor :exclusions
|
|
|
|
|
|
|
|
# The location of the node, if different from instance location.
|
|
|
|
# Corresponds to the JSON property `location`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :location
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# The id of the node. This should be equal to SaasInstanceNode.node_id.
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `nodeId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :node_id
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@exclusions = args[:exclusions] if args.key?(:exclusions)
|
|
|
|
@location = args[:location] if args.key?(:location)
|
|
|
|
@node_id = args[:node_id] if args.key?(:node_id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Describes provisioned dataplane resources.
|
|
|
|
class GoogleCloudSaasacceleratorManagementProvidersV1ProvisionedResource
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Type of the resource. This can be either a GCP resource or a custom one (e.g.
|
|
|
|
# another cloud provider's VM). For GCP compute resources use singular form of
|
|
|
|
# the names listed in GCP compute API documentation (https://cloud.google.com/
|
|
|
|
# compute/docs/reference/rest/v1/), prefixed with 'compute-', for example: '
|
|
|
|
# compute-instance', 'compute-disk', 'compute-autoscaler'.
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `resourceType`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :resource_type
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# URL identifying the resource, e.g. "https://www.googleapis.com/compute/v1/
|
|
|
|
# projects/...)".
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `resourceUrl`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :resource_url
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@resource_type = args[:resource_type] if args.key?(:resource_type)
|
|
|
|
@resource_url = args[:resource_url] if args.key?(:resource_url)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# SloEligibility is a tuple containing eligibility value: true if an instance is
|
|
|
|
# eligible for SLO calculation or false if it should be excluded from all SLO-
|
|
|
|
# related calculations along with a user-defined reason.
|
2020-07-24 00:38:50 +00:00
|
|
|
class GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Whether an instance is eligible or ineligible.
|
|
|
|
# Corresponds to the JSON property `eligible`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :eligible
|
|
|
|
alias_method :eligible?, :eligible
|
|
|
|
|
|
|
|
# User-defined reason for the current value of instance eligibility. Usually,
|
2020-08-13 00:39:19 +00:00
|
|
|
# this can be directly mapped to the internal state. An empty reason is allowed.
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `reason`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :reason
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@eligible = args[:eligible] if args.key?(:eligible)
|
|
|
|
@reason = args[:reason] if args.key?(:reason)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# SloExclusion represents an exclusion in SLI calculation applies to all SLOs.
|
|
|
|
class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Exclusion duration. No restrictions on the possible values. When an ongoing
|
|
|
|
# operation is taking longer than initially expected, an existing entry in the
|
|
|
|
# exclusion list can be updated by extending the duration. This is supported by
|
|
|
|
# the subsystem exporting eligibility data as long as such extension is
|
|
|
|
# committed at least 10 minutes before the original exclusion expiration -
|
|
|
|
# otherwise it is possible that there will be "gaps" in the exclusion
|
|
|
|
# application in the exported timeseries.
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `duration`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :duration
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Human-readable reason for the exclusion. This should be a static string (e.g. "
|
|
|
|
# Disruptive update in progress") and should not contain dynamically generated
|
|
|
|
# data (e.g. instance name). Can be left empty.
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `reason`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :reason
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Name of an SLI that this exclusion applies to. Can be left empty, signaling
|
|
|
|
# that the instance should be excluded from all SLIs defined in the service SLO
|
|
|
|
# configuration.
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `sliName`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :sli_name
|
|
|
|
|
|
|
|
# Start time of the exclusion. No alignment (e.g. to a full minute) needed.
|
|
|
|
# Corresponds to the JSON property `startTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :start_time
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@duration = args[:duration] if args.key?(:duration)
|
|
|
|
@reason = args[:reason] if args.key?(:reason)
|
|
|
|
@sli_name = args[:sli_name] if args.key?(:sli_name)
|
|
|
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# SloMetadata contains resources required for proper SLO classification of the
|
|
|
|
# instance.
|
|
|
|
class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# SloEligibility is a tuple containing eligibility value: true if an instance is
|
|
|
|
# eligible for SLO calculation or false if it should be excluded from all SLO-
|
|
|
|
# related calculations along with a user-defined reason.
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `eligibility`
|
|
|
|
# @return [Google::Apis::RedisV1::GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility]
|
|
|
|
attr_accessor :eligibility
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# List of SLO exclusion windows. When multiple entries in the list match (
|
|
|
|
# matching the exclusion time-window against current time point) the exclusion
|
|
|
|
# reason used in the first matching entry will be published. It is not needed to
|
|
|
|
# include expired exclusion in this list, as only the currently applicable
|
|
|
|
# exclusions are taken into account by the eligibility exporting subsystem (the
|
|
|
|
# historical state of exclusions will be reflected in the historically produced
|
|
|
|
# timeseries regardless of the current state). This field can be used to mark
|
|
|
|
# the instance as temporary ineligible for the purpose of SLO calculation. For
|
|
|
|
# permanent instance SLO exclusion, use of custom instance eligibility is
|
|
|
|
# recommended. See 'eligibility' field below.
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `exclusions`
|
|
|
|
# @return [Array<Google::Apis::RedisV1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>]
|
|
|
|
attr_accessor :exclusions
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Optional. List of nodes. Some producers need to use per-node metadata to
|
|
|
|
# calculate SLO. This field allows such producers to publish per-node SLO meta
|
|
|
|
# data, which will be consumed by SSA Eligibility Exporter and published in the
|
2020-07-24 00:38:50 +00:00
|
|
|
# form of per node metric to Monarch.
|
|
|
|
# Corresponds to the JSON property `nodes`
|
|
|
|
# @return [Array<Google::Apis::RedisV1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata>]
|
|
|
|
attr_accessor :nodes
|
|
|
|
|
|
|
|
# Name of the SLO tier the Instance belongs to. This name will be expected to
|
2020-08-13 00:39:19 +00:00
|
|
|
# match the tiers specified in the service SLO configuration. Field is mandatory
|
|
|
|
# and must not be empty.
|
2020-07-24 00:38:50 +00:00
|
|
|
# Corresponds to the JSON property `tier`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :tier
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@eligibility = args[:eligibility] if args.key?(:eligibility)
|
|
|
|
@exclusions = args[:exclusions] if args.key?(:exclusions)
|
|
|
|
@nodes = args[:nodes] if args.key?(:nodes)
|
|
|
|
@tier = args[:tier] if args.key?(:tier)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-02 00:37:51 +00:00
|
|
|
# Request for Import.
|
|
|
|
class ImportInstanceRequest
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The input content
|
|
|
|
# Corresponds to the JSON property `inputConfig`
|
|
|
|
# @return [Google::Apis::RedisV1::InputConfig]
|
|
|
|
attr_accessor :input_config
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@input_config = args[:input_config] if args.key?(:input_config)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# The input content
|
|
|
|
class InputConfig
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2019-06-09 00:37:30 +00:00
|
|
|
# The Cloud Storage location for the input content
|
2019-06-02 00:37:51 +00:00
|
|
|
# Corresponds to the JSON property `gcsSource`
|
|
|
|
# @return [Google::Apis::RedisV1::GcsSource]
|
|
|
|
attr_accessor :gcs_source
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@gcs_source = args[:gcs_source] if args.key?(:gcs_source)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-09-07 00:36:30 +00:00
|
|
|
# A Google Cloud Redis instance.
|
|
|
|
class Instance
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Optional. Only applicable to STANDARD_HA tier which protects the instance
|
|
|
|
# against zonal failures by provisioning it across two zones. If provided, it
|
2019-11-06 00:37:09 +00:00
|
|
|
# must be a different zone from the one provided in location_id.
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `alternativeLocationId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :alternative_location_id
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# 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.
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `authorizedNetwork`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :authorized_network
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Optional. The network connect mode of the Redis instance. If not provided, the
|
|
|
|
# connect mode defaults to DIRECT_PEERING.
|
2020-02-06 00:37:37 +00:00
|
|
|
# Corresponds to the JSON property `connectMode`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :connect_mode
|
|
|
|
|
2018-09-07 00:36:30 +00:00
|
|
|
# Output only. The time the instance was created.
|
|
|
|
# Corresponds to the JSON property `createTime`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :create_time
|
|
|
|
|
|
|
|
# Output only. The current zone where the Redis endpoint is placed. For Basic
|
2020-08-13 00:39:19 +00:00
|
|
|
# Tier instances, this will always be the same as the location_id provided by
|
|
|
|
# the user at creation time. For Standard Tier instances, this can be either
|
|
|
|
# location_id or alternative_location_id and can change after a failover event.
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `currentLocationId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :current_location_id
|
|
|
|
|
|
|
|
# An arbitrary and optional user-provided name for the instance.
|
|
|
|
# Corresponds to the JSON property `displayName`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :display_name
|
|
|
|
|
|
|
|
# Output only. Hostname or IP address of the exposed Redis endpoint used by
|
|
|
|
# clients to connect to the service.
|
|
|
|
# Corresponds to the JSON property `host`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :host
|
|
|
|
|
|
|
|
# Resource labels to represent user provided metadata
|
|
|
|
# Corresponds to the JSON property `labels`
|
|
|
|
# @return [Hash<String,String>]
|
|
|
|
attr_accessor :labels
|
|
|
|
|
|
|
|
# Optional. The zone where the instance will be provisioned. If not provided,
|
|
|
|
# the service will choose a zone for the instance. For STANDARD_HA tier,
|
|
|
|
# instances will be created across two zones for protection against zonal
|
2020-08-13 00:39:19 +00:00
|
|
|
# failures. If alternative_location_id is also provided, it must be different
|
|
|
|
# from location_id.
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `locationId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :location_id
|
|
|
|
|
|
|
|
# Required. Redis memory size in GiB.
|
|
|
|
# Corresponds to the JSON property `memorySizeGb`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :memory_size_gb
|
|
|
|
|
|
|
|
# Required. Unique name of the resource in this scope including project and
|
2020-08-13 00:39:19 +00:00
|
|
|
# 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
|
2019-11-06 00:37:09 +00:00
|
|
|
# alternative_location_id fields for more details.
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `name`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :name
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Output only. 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
|
2019-06-02 00:37:51 +00:00
|
|
|
# operation.
|
|
|
|
# Corresponds to the JSON property `persistenceIamIdentity`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :persistence_iam_identity
|
|
|
|
|
2018-09-07 00:36:30 +00:00
|
|
|
# Output only. The port number of the exposed Redis endpoint.
|
|
|
|
# Corresponds to the JSON property `port`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :port
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# 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
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `redisConfigs`
|
|
|
|
# @return [Hash<String,String>]
|
|
|
|
attr_accessor :redis_configs
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# 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
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `redisVersion`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :redis_version
|
|
|
|
|
|
|
|
# Optional. The CIDR range of internal addresses that are reserved for this
|
2020-08-13 00:39:19 +00:00
|
|
|
# instance. If not provided, the service will choose an unused /29 block, for
|
|
|
|
# example, 10.0.0.0/29 or 192.168.0.0/29. Ranges must be unique and non-
|
|
|
|
# overlapping with existing subnets in an authorized network.
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `reservedIpRange`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :reserved_ip_range
|
|
|
|
|
|
|
|
# Output only. The current state of this instance.
|
|
|
|
# Corresponds to the JSON property `state`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :state
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Output only. Additional information about the current status of this instance,
|
|
|
|
# if available.
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `statusMessage`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :status_message
|
|
|
|
|
|
|
|
# Required. The service tier of the instance.
|
|
|
|
# Corresponds to the JSON property `tier`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :tier
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@alternative_location_id = args[:alternative_location_id] if args.key?(:alternative_location_id)
|
|
|
|
@authorized_network = args[:authorized_network] if args.key?(:authorized_network)
|
2020-02-06 00:37:37 +00:00
|
|
|
@connect_mode = args[:connect_mode] if args.key?(:connect_mode)
|
2018-09-07 00:36:30 +00:00
|
|
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
|
|
@current_location_id = args[:current_location_id] if args.key?(:current_location_id)
|
|
|
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
|
|
@host = args[:host] if args.key?(:host)
|
|
|
|
@labels = args[:labels] if args.key?(:labels)
|
|
|
|
@location_id = args[:location_id] if args.key?(:location_id)
|
|
|
|
@memory_size_gb = args[:memory_size_gb] if args.key?(:memory_size_gb)
|
|
|
|
@name = args[:name] if args.key?(:name)
|
2019-06-02 00:37:51 +00:00
|
|
|
@persistence_iam_identity = args[:persistence_iam_identity] if args.key?(:persistence_iam_identity)
|
2018-09-07 00:36:30 +00:00
|
|
|
@port = args[:port] if args.key?(:port)
|
|
|
|
@redis_configs = args[:redis_configs] if args.key?(:redis_configs)
|
|
|
|
@redis_version = args[:redis_version] if args.key?(:redis_version)
|
|
|
|
@reserved_ip_range = args[:reserved_ip_range] if args.key?(:reserved_ip_range)
|
|
|
|
@state = args[:state] if args.key?(:state)
|
|
|
|
@status_message = args[:status_message] if args.key?(:status_message)
|
|
|
|
@tier = args[:tier] if args.key?(:tier)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Response for ListInstances.
|
|
|
|
class ListInstancesResponse
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# A list of Redis instances in the project in the specified location, or across
|
|
|
|
# all locations. If the `location_id` in the parent field of the request is "-",
|
|
|
|
# all regions available to the project are queried, and the results aggregated.
|
|
|
|
# If in such an aggregated query a location is unavailable, a dummy Redis entry
|
|
|
|
# is included in the response with the `name` field set to a value of the form `
|
|
|
|
# projects/`project_id`/locations/`location_id`/instances/`- and the `status`
|
|
|
|
# field set to ERROR and `status_message` field set to "location not available
|
|
|
|
# for ListInstances".
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `instances`
|
|
|
|
# @return [Array<Google::Apis::RedisV1::Instance>]
|
|
|
|
attr_accessor :instances
|
|
|
|
|
|
|
|
# Token to retrieve the next page of results, or empty if there are no more
|
|
|
|
# results in the list.
|
|
|
|
# Corresponds to the JSON property `nextPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_page_token
|
|
|
|
|
2018-11-06 00:31:47 +00:00
|
|
|
# Locations that could not be reached.
|
|
|
|
# Corresponds to the JSON property `unreachable`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :unreachable
|
|
|
|
|
2018-09-07 00:36:30 +00:00
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@instances = args[:instances] if args.key?(:instances)
|
|
|
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2018-11-06 00:31:47 +00:00
|
|
|
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2018-09-07 00:36:30 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# The response message for Locations.ListLocations.
|
|
|
|
class ListLocationsResponse
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# A list of locations that matches the specified filter in the request.
|
|
|
|
# Corresponds to the JSON property `locations`
|
|
|
|
# @return [Array<Google::Apis::RedisV1::Location>]
|
|
|
|
attr_accessor :locations
|
|
|
|
|
|
|
|
# The standard List next-page token.
|
|
|
|
# Corresponds to the JSON property `nextPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_page_token
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@locations = args[:locations] if args.key?(:locations)
|
|
|
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# The response message for Operations.ListOperations.
|
|
|
|
class ListOperationsResponse
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The standard List next-page token.
|
|
|
|
# Corresponds to the JSON property `nextPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_page_token
|
|
|
|
|
|
|
|
# A list of operations that matches the specified filter in the request.
|
|
|
|
# Corresponds to the JSON property `operations`
|
|
|
|
# @return [Array<Google::Apis::RedisV1::Operation>]
|
|
|
|
attr_accessor :operations
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
|
|
@operations = args[:operations] if args.key?(:operations)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# A resource that represents Google Cloud Platform location.
|
|
|
|
class Location
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# The friendly name for this location, typically a nearby city name. For example,
|
|
|
|
# "Tokyo".
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `displayName`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :display_name
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# Cross-service attributes for the location. For example `"cloud.googleapis.com/
|
|
|
|
# region": "us-east1"`
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `labels`
|
|
|
|
# @return [Hash<String,String>]
|
|
|
|
attr_accessor :labels
|
|
|
|
|
|
|
|
# Resource ID for the region. For example: "us-east1".
|
|
|
|
# Corresponds to the JSON property `locationId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :location_id
|
|
|
|
|
|
|
|
# Output only. The set of available zones in the location. The map is keyed by
|
|
|
|
# the lowercase ID of each zone, as defined by Compute Engine. These keys can be
|
|
|
|
# specified in `location_id` or `alternative_location_id` fields when creating a
|
|
|
|
# Redis instance.
|
|
|
|
# Corresponds to the JSON property `metadata`
|
|
|
|
# @return [Hash<String,Object>]
|
|
|
|
attr_accessor :metadata
|
|
|
|
|
|
|
|
# Full resource name for the region. For example: "projects/example-project/
|
|
|
|
# locations/us-east1".
|
|
|
|
# Corresponds to the JSON property `name`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :name
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
|
|
@labels = args[:labels] if args.key?(:labels)
|
|
|
|
@location_id = args[:location_id] if args.key?(:location_id)
|
|
|
|
@metadata = args[:metadata] if args.key?(:metadata)
|
|
|
|
@name = args[:name] if args.key?(:name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# This resource represents a long-running operation that is the result of a
|
|
|
|
# network API call.
|
|
|
|
class Operation
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# If the value is `false`, it means the operation is still in progress. If `true`
|
|
|
|
# , the operation is completed, and either `error` or `response` is available.
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `done`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :done
|
|
|
|
alias_method :done?, :done
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# The `Status` type defines a logical error model that is suitable for different
|
|
|
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
|
|
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
|
|
|
# data: error code, error message, and error details. You can find out more
|
|
|
|
# about this error model and how to work with it in the [API Design Guide](https:
|
|
|
|
# //cloud.google.com/apis/design/errors).
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `error`
|
|
|
|
# @return [Google::Apis::RedisV1::Status]
|
|
|
|
attr_accessor :error
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# ` `createTime`: The time the operation was created. `endTime`: The time the
|
|
|
|
# operation finished running. `target`: Server-defined resource path for the
|
|
|
|
# target of the operation. `verb`: Name of the verb executed by the operation. `
|
|
|
|
# statusDetail`: Human-readable status of the operation, if any. `
|
|
|
|
# cancelRequested`: Identifies whether the user has requested cancellation of
|
2018-09-07 00:36:30 +00:00
|
|
|
# the operation. Operations that have successfully been cancelled have Operation.
|
|
|
|
# error value with a google.rpc.Status.code of 1, corresponding to `Code.
|
2020-08-13 00:39:19 +00:00
|
|
|
# CANCELLED`. `apiVersion`: API version used to start the operation. `
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `metadata`
|
|
|
|
# @return [Hash<String,Object>]
|
|
|
|
attr_accessor :metadata
|
|
|
|
|
|
|
|
# The server-assigned name, which is only unique within the same service that
|
2020-08-13 00:39:19 +00:00
|
|
|
# originally returns it. If you use the default HTTP mapping, the `name` should
|
|
|
|
# be a resource name ending with `operations/`unique_id``.
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `name`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :name
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# The normal response of the operation in case of success. If the original
|
|
|
|
# method returns no data on success, such as `Delete`, the response is `google.
|
|
|
|
# protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`,
|
|
|
|
# the response should be the resource. For other methods, the response should
|
|
|
|
# have the type `XxxResponse`, where `Xxx` is the original method name. For
|
|
|
|
# example, if the original method name is `TakeSnapshot()`, the inferred
|
|
|
|
# response type is `TakeSnapshotResponse`.
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `response`
|
|
|
|
# @return [Hash<String,Object>]
|
|
|
|
attr_accessor :response
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@done = args[:done] if args.key?(:done)
|
|
|
|
@error = args[:error] if args.key?(:error)
|
|
|
|
@metadata = args[:metadata] if args.key?(:metadata)
|
|
|
|
@name = args[:name] if args.key?(:name)
|
|
|
|
@response = args[:response] if args.key?(:response)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-02 00:37:51 +00:00
|
|
|
# The output content
|
|
|
|
class OutputConfig
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2019-06-09 00:37:30 +00:00
|
|
|
# The Cloud Storage location for the output content
|
2019-06-02 00:37:51 +00:00
|
|
|
# Corresponds to the JSON property `gcsDestination`
|
|
|
|
# @return [Google::Apis::RedisV1::GcsDestination]
|
|
|
|
attr_accessor :gcs_destination
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# The `Status` type defines a logical error model that is suitable for different
|
|
|
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
|
|
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
|
|
|
# data: error code, error message, and error details. You can find out more
|
|
|
|
# about this error model and how to work with it in the [API Design Guide](https:
|
|
|
|
# //cloud.google.com/apis/design/errors).
|
2018-09-07 00:36:30 +00:00
|
|
|
class Status
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The status code, which should be an enum value of google.rpc.Code.
|
|
|
|
# Corresponds to the JSON property `code`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :code
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# A list of messages that carry the error details. There is a common set of
|
2018-09-07 00:36:30 +00:00
|
|
|
# message types for APIs to use.
|
|
|
|
# Corresponds to the JSON property `details`
|
|
|
|
# @return [Array<Hash<String,Object>>]
|
|
|
|
attr_accessor :details
|
|
|
|
|
2020-08-13 00:39:19 +00:00
|
|
|
# A developer-facing error message, which should be in English. Any user-facing
|
|
|
|
# error message should be localized and sent in the google.rpc.Status.details
|
|
|
|
# field, or localized by the client.
|
2018-09-07 00:36:30 +00:00
|
|
|
# Corresponds to the JSON property `message`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :message
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@code = args[:code] if args.key?(:code)
|
|
|
|
@details = args[:details] if args.key?(:details)
|
|
|
|
@message = args[:message] if args.key?(:message)
|
|
|
|
end
|
|
|
|
end
|
2020-04-13 16:49:10 +00:00
|
|
|
|
|
|
|
# Request for UpgradeInstance.
|
|
|
|
class UpgradeInstanceRequest
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Required. Specifies the target version of Redis software to upgrade to.
|
|
|
|
# Corresponds to the JSON property `redisVersion`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :redis_version
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@redis_version = args[:redis_version] if args.key?(:redis_version)
|
|
|
|
end
|
|
|
|
end
|
2018-09-07 00:36:30 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|