mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-02-23 15:49:49 +01:00
update all APIs
Like documented in the README ``` rm -f .api.deps .cli.deps && FETCH_APIS=1 make update-json -j8 ```
This commit is contained in:
@@ -425,6 +425,34 @@
|
||||
"scopes": [
|
||||
"https://www.googleapis.com/auth/cloud-platform"
|
||||
]
|
||||
},
|
||||
"upgrade": {
|
||||
"description": "Upgrades the Memcache instance to a newer memcached engine version specified in the request.",
|
||||
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/instances/{instancesId}:upgrade",
|
||||
"httpMethod": "POST",
|
||||
"id": "memcache.projects.locations.instances.upgrade",
|
||||
"parameterOrder": [
|
||||
"name"
|
||||
],
|
||||
"parameters": {
|
||||
"name": {
|
||||
"description": "Required. Memcache instance resource name using the form: `projects/{project}/locations/{location}/instances/{instance}` where `location_id` refers to a GCP region.",
|
||||
"location": "path",
|
||||
"pattern": "^projects/[^/]+/locations/[^/]+/instances/[^/]+$",
|
||||
"required": true,
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"path": "v1/{+name}:upgrade",
|
||||
"request": {
|
||||
"$ref": "GoogleCloudMemcacheV1UpgradeInstanceRequest"
|
||||
},
|
||||
"response": {
|
||||
"$ref": "Operation"
|
||||
},
|
||||
"scopes": [
|
||||
"https://www.googleapis.com/auth/cloud-platform"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -509,7 +537,7 @@
|
||||
]
|
||||
},
|
||||
"list": {
|
||||
"description": "Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name` binding allows API services to override the binding to use different resource name schemes, such as `users/*/operations`. To override the binding, API services can add a binding such as `\"/v1/{name=users/*}/operations\"` to their service configuration. For backwards compatibility, the default name includes the operations collection id, however overriding users must ensure the name binding is the parent resource, without the operations collection id.",
|
||||
"description": "Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`.",
|
||||
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/operations",
|
||||
"httpMethod": "GET",
|
||||
"id": "memcache.projects.locations.operations.list",
|
||||
@@ -556,7 +584,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"revision": "20230103",
|
||||
"revision": "20240222",
|
||||
"rootUrl": "https://memcache.googleapis.com/",
|
||||
"schemas": {
|
||||
"ApplyParametersRequest": {
|
||||
@@ -735,16 +763,38 @@
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"GoogleCloudMemcacheV1UpgradeInstanceRequest": {
|
||||
"description": "Request for UpgradeInstance.",
|
||||
"id": "GoogleCloudMemcacheV1UpgradeInstanceRequest",
|
||||
"properties": {
|
||||
"memcacheVersion": {
|
||||
"description": "Required. Specifies the target version of memcached engine to upgrade to.",
|
||||
"enum": [
|
||||
"MEMCACHE_VERSION_UNSPECIFIED",
|
||||
"MEMCACHE_1_5",
|
||||
"MEMCACHE_1_6_15"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"Memcache version is not specified by customer",
|
||||
"Memcached 1.5 version.",
|
||||
"Memcached 1.6.15 version."
|
||||
],
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"GoogleCloudMemcacheV1ZoneMetadata": {
|
||||
"id": "GoogleCloudMemcacheV1ZoneMetadata",
|
||||
"properties": {},
|
||||
"type": "object"
|
||||
},
|
||||
"GoogleCloudSaasacceleratorManagementProvidersV1Instance": {
|
||||
"description": "Instance represents the interface for SLM services to actuate the state of control plane resources. Example Instance in JSON, where consumer-project-number=123456, producer-project-id=cloud-sql: ```json Instance: { \"name\": \"projects/123456/locations/us-east1/instances/prod-instance\", \"create_time\": { \"seconds\": 1526406431, }, \"labels\": { \"env\": \"prod\", \"foo\": \"bar\" }, \"state\": READY, \"software_versions\": { \"software_update\": \"cloud-sql-09-28-2018\", }, \"maintenance_policy_names\": { \"UpdatePolicy\": \"projects/123456/locations/us-east1/maintenancePolicies/prod-update-policy\", } \"tenant_project_id\": \"cloud-sql-test-tenant\", \"producer_metadata\": { \"cloud-sql-tier\": \"basic\", \"cloud-sql-instance-size\": \"1G\", }, \"provisioned_resources\": [ { \"resource-type\": \"compute-instance\", \"resource-url\": \"https://www.googleapis.com/compute/v1/projects/cloud-sql/zones/us-east1-b/instances/vm-1\", } ], \"maintenance_schedules\": { \"csa_rollout\": { \"start_time\": { \"seconds\": 1526406431, }, \"end_time\": { \"seconds\": 1535406431, }, }, \"ncsa_rollout\": { \"start_time\": { \"seconds\": 1526406431, }, \"end_time\": { \"seconds\": 1535406431, }, } }, \"consumer_defined_name\": \"my-sql-instance1\", } ``` LINT.IfChange",
|
||||
"id": "GoogleCloudSaasacceleratorManagementProvidersV1Instance",
|
||||
"properties": {
|
||||
"consumerDefinedName": {
|
||||
"description": "consumer_defined_name is the name that is set by the consumer. On the other 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.",
|
||||
"description": "consumer_defined_name is the name of the instance set by the service consumers. Generally this is different from the `name` field which reperesents the system-assigned id of the instance which the service consumers do not recognize. This is a required field for tenants onboarding to Maintenance Window notifications (go/slm-rollout-maintenance-policies#prerequisites).",
|
||||
"type": "string"
|
||||
},
|
||||
"createTime": {
|
||||
@@ -768,7 +818,7 @@
|
||||
"additionalProperties": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": "Optional. Deprecated. 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.",
|
||||
"description": "Optional. 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 details, please refer to go/mr-user-guide. Should not be set if maintenance_settings.maintenance_policies is set.",
|
||||
"type": "object"
|
||||
},
|
||||
"maintenanceSchedules": {
|
||||
@@ -867,6 +917,7 @@
|
||||
"id": "GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule",
|
||||
"properties": {
|
||||
"canReschedule": {
|
||||
"deprecated": true,
|
||||
"description": "This field is deprecated, and will be always set to true since reschedule can happen multiple times now. This field should not be removed until all service producers remove this for their customers.",
|
||||
"type": "boolean"
|
||||
},
|
||||
@@ -908,7 +959,7 @@
|
||||
"additionalProperties": {
|
||||
"$ref": "MaintenancePolicy"
|
||||
},
|
||||
"description": "Optional. 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 embedded policy must define the same policy type. For complete details of MaintenancePolicy, please refer to go/cloud-saas-mw-ug. If only the name is needed, then only populate MaintenancePolicy.name.",
|
||||
"description": "Optional. 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 embedded policy must define the same policy type. For details, please refer to go/mr-user-guide. Should not be set if maintenance_policy_names is set. If only the name is needed, then only populate MaintenancePolicy.name.",
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
@@ -1076,11 +1127,13 @@
|
||||
"description": "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.",
|
||||
"enum": [
|
||||
"MEMCACHE_VERSION_UNSPECIFIED",
|
||||
"MEMCACHE_1_5"
|
||||
"MEMCACHE_1_5",
|
||||
"MEMCACHE_1_6_15"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"",
|
||||
"Memcached 1.5 version."
|
||||
"Memcache version is not specified by customer",
|
||||
"Memcached 1.5 version.",
|
||||
"Memcached 1.6.15 version."
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
@@ -1101,6 +1154,13 @@
|
||||
"$ref": "MemcacheParameters",
|
||||
"description": "User defined parameters to apply to the memcached process on each node."
|
||||
},
|
||||
"reservedIpRangeId": {
|
||||
"description": "Optional. Contains the id of allocated IP address ranges associated with the private service access connection for example, \"test-default\" associated with IP range 10.0.0.0/29.",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": "array"
|
||||
},
|
||||
"state": {
|
||||
"description": "Output only. The state of this Memcached instance.",
|
||||
"enum": [
|
||||
@@ -1109,7 +1169,8 @@
|
||||
"READY",
|
||||
"UPDATING",
|
||||
"DELETING",
|
||||
"PERFORMING_MAINTENANCE"
|
||||
"PERFORMING_MAINTENANCE",
|
||||
"MEMCACHE_VERSION_UPGRADING"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"State not set.",
|
||||
@@ -1117,7 +1178,8 @@
|
||||
"Memcached instance has been created and ready to be used.",
|
||||
"Memcached instance is updating configuration such as maintenance policy and schedule.",
|
||||
"Memcached instance is being deleted.",
|
||||
"Memcached instance is going through maintenance, e.g. data plane rollout."
|
||||
"Memcached instance is going through maintenance, e.g. data plane rollout.",
|
||||
"Memcached instance is undergoing memcached engine version upgrade."
|
||||
],
|
||||
"readOnly": true,
|
||||
"type": "string"
|
||||
@@ -1222,7 +1284,7 @@
|
||||
"type": "object"
|
||||
},
|
||||
"Location": {
|
||||
"description": "A resource that represents Google Cloud Platform location.",
|
||||
"description": "A resource that represents a Google Cloud location.",
|
||||
"id": "Location",
|
||||
"properties": {
|
||||
"displayName": {
|
||||
@@ -1386,6 +1448,26 @@
|
||||
"readOnly": true,
|
||||
"type": "string"
|
||||
},
|
||||
"memcacheFullVersion": {
|
||||
"description": "Output only. The full version of memcached server running on this node. e.g. - memcached-1.5.16",
|
||||
"readOnly": true,
|
||||
"type": "string"
|
||||
},
|
||||
"memcacheVersion": {
|
||||
"description": "Output only. Major version of memcached server running on this node, e.g. MEMCACHE_1_5",
|
||||
"enum": [
|
||||
"MEMCACHE_VERSION_UNSPECIFIED",
|
||||
"MEMCACHE_1_5",
|
||||
"MEMCACHE_1_6_15"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"Memcache version is not specified by customer",
|
||||
"Memcached 1.5 version.",
|
||||
"Memcached 1.6.15 version."
|
||||
],
|
||||
"readOnly": true,
|
||||
"type": "string"
|
||||
},
|
||||
"nodeId": {
|
||||
"description": "Output only. Identifier of the Memcached node. The node id does not include project or location like the Memcached instance name.",
|
||||
"readOnly": true,
|
||||
@@ -1474,7 +1556,7 @@
|
||||
"description": "Properties of the object. Contains field @type with type URL.",
|
||||
"type": "any"
|
||||
},
|
||||
"description": "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`.",
|
||||
"description": "The normal, successful response of the operation. 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`.",
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
@@ -1687,7 +1769,7 @@
|
||||
"type": "string"
|
||||
},
|
||||
"denyMaintenancePeriods": {
|
||||
"description": "Deny Maintenance Period that is applied to resource to indicate when maintenance is forbidden. User can specify zero or more non-overlapping deny periods. Maximum number of deny_maintenance_periods expected is one.",
|
||||
"description": "Deny Maintenance Period that is applied to resource to indicate when maintenance is forbidden. The protocol supports zero-to-many such periods, but the current SLM Rollout implementation only supports zero-to-one.",
|
||||
"items": {
|
||||
"$ref": "DenyMaintenancePeriod"
|
||||
},
|
||||
|
||||
@@ -453,6 +453,34 @@
|
||||
"scopes": [
|
||||
"https://www.googleapis.com/auth/cloud-platform"
|
||||
]
|
||||
},
|
||||
"upgrade": {
|
||||
"description": "Upgrades the Memcache instance to a newer memcached engine version specified in the request.",
|
||||
"flatPath": "v1beta2/projects/{projectsId}/locations/{locationsId}/instances/{instancesId}:upgrade",
|
||||
"httpMethod": "POST",
|
||||
"id": "memcache.projects.locations.instances.upgrade",
|
||||
"parameterOrder": [
|
||||
"name"
|
||||
],
|
||||
"parameters": {
|
||||
"name": {
|
||||
"description": "Required. Memcache instance resource name using the form: `projects/{project}/locations/{location}/instances/{instance}` where `location_id` refers to a GCP region.",
|
||||
"location": "path",
|
||||
"pattern": "^projects/[^/]+/locations/[^/]+/instances/[^/]+$",
|
||||
"required": true,
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"path": "v1beta2/{+name}:upgrade",
|
||||
"request": {
|
||||
"$ref": "GoogleCloudMemcacheV1beta2UpgradeInstanceRequest"
|
||||
},
|
||||
"response": {
|
||||
"$ref": "Operation"
|
||||
},
|
||||
"scopes": [
|
||||
"https://www.googleapis.com/auth/cloud-platform"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -537,7 +565,7 @@
|
||||
]
|
||||
},
|
||||
"list": {
|
||||
"description": "Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name` binding allows API services to override the binding to use different resource name schemes, such as `users/*/operations`. To override the binding, API services can add a binding such as `\"/v1/{name=users/*}/operations\"` to their service configuration. For backwards compatibility, the default name includes the operations collection id, however overriding users must ensure the name binding is the parent resource, without the operations collection id.",
|
||||
"description": "Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`.",
|
||||
"flatPath": "v1beta2/projects/{projectsId}/locations/{locationsId}/operations",
|
||||
"httpMethod": "GET",
|
||||
"id": "memcache.projects.locations.operations.list",
|
||||
@@ -584,7 +612,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"revision": "20230103",
|
||||
"revision": "20240222",
|
||||
"rootUrl": "https://memcache.googleapis.com/",
|
||||
"schemas": {
|
||||
"ApplyParametersRequest": {
|
||||
@@ -781,16 +809,38 @@
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"GoogleCloudMemcacheV1beta2UpgradeInstanceRequest": {
|
||||
"description": "Request for UpgradeInstance.",
|
||||
"id": "GoogleCloudMemcacheV1beta2UpgradeInstanceRequest",
|
||||
"properties": {
|
||||
"memcacheVersion": {
|
||||
"description": "Required. Specifies the target version of memcached engine to upgrade to.",
|
||||
"enum": [
|
||||
"MEMCACHE_VERSION_UNSPECIFIED",
|
||||
"MEMCACHE_1_5",
|
||||
"MEMCACHE_1_6_15"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"Memcache version is not specified by customer",
|
||||
"Memcached 1.5 version.",
|
||||
"Memcached 1.6.15 version."
|
||||
],
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"GoogleCloudMemcacheV1beta2ZoneMetadata": {
|
||||
"id": "GoogleCloudMemcacheV1beta2ZoneMetadata",
|
||||
"properties": {},
|
||||
"type": "object"
|
||||
},
|
||||
"GoogleCloudSaasacceleratorManagementProvidersV1Instance": {
|
||||
"description": "Instance represents the interface for SLM services to actuate the state of control plane resources. Example Instance in JSON, where consumer-project-number=123456, producer-project-id=cloud-sql: ```json Instance: { \"name\": \"projects/123456/locations/us-east1/instances/prod-instance\", \"create_time\": { \"seconds\": 1526406431, }, \"labels\": { \"env\": \"prod\", \"foo\": \"bar\" }, \"state\": READY, \"software_versions\": { \"software_update\": \"cloud-sql-09-28-2018\", }, \"maintenance_policy_names\": { \"UpdatePolicy\": \"projects/123456/locations/us-east1/maintenancePolicies/prod-update-policy\", } \"tenant_project_id\": \"cloud-sql-test-tenant\", \"producer_metadata\": { \"cloud-sql-tier\": \"basic\", \"cloud-sql-instance-size\": \"1G\", }, \"provisioned_resources\": [ { \"resource-type\": \"compute-instance\", \"resource-url\": \"https://www.googleapis.com/compute/v1/projects/cloud-sql/zones/us-east1-b/instances/vm-1\", } ], \"maintenance_schedules\": { \"csa_rollout\": { \"start_time\": { \"seconds\": 1526406431, }, \"end_time\": { \"seconds\": 1535406431, }, }, \"ncsa_rollout\": { \"start_time\": { \"seconds\": 1526406431, }, \"end_time\": { \"seconds\": 1535406431, }, } }, \"consumer_defined_name\": \"my-sql-instance1\", } ``` LINT.IfChange",
|
||||
"id": "GoogleCloudSaasacceleratorManagementProvidersV1Instance",
|
||||
"properties": {
|
||||
"consumerDefinedName": {
|
||||
"description": "consumer_defined_name is the name that is set by the consumer. On the other 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.",
|
||||
"description": "consumer_defined_name is the name of the instance set by the service consumers. Generally this is different from the `name` field which reperesents the system-assigned id of the instance which the service consumers do not recognize. This is a required field for tenants onboarding to Maintenance Window notifications (go/slm-rollout-maintenance-policies#prerequisites).",
|
||||
"type": "string"
|
||||
},
|
||||
"createTime": {
|
||||
@@ -814,7 +864,7 @@
|
||||
"additionalProperties": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": "Optional. Deprecated. 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.",
|
||||
"description": "Optional. 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 details, please refer to go/mr-user-guide. Should not be set if maintenance_settings.maintenance_policies is set.",
|
||||
"type": "object"
|
||||
},
|
||||
"maintenanceSchedules": {
|
||||
@@ -913,6 +963,7 @@
|
||||
"id": "GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule",
|
||||
"properties": {
|
||||
"canReschedule": {
|
||||
"deprecated": true,
|
||||
"description": "This field is deprecated, and will be always set to true since reschedule can happen multiple times now. This field should not be removed until all service producers remove this for their customers.",
|
||||
"type": "boolean"
|
||||
},
|
||||
@@ -954,7 +1005,7 @@
|
||||
"additionalProperties": {
|
||||
"$ref": "MaintenancePolicy"
|
||||
},
|
||||
"description": "Optional. 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 embedded policy must define the same policy type. For complete details of MaintenancePolicy, please refer to go/cloud-saas-mw-ug. If only the name is needed, then only populate MaintenancePolicy.name.",
|
||||
"description": "Optional. 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 embedded policy must define the same policy type. For details, please refer to go/mr-user-guide. Should not be set if maintenance_policy_names is set. If only the name is needed, then only populate MaintenancePolicy.name.",
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
@@ -1122,11 +1173,13 @@
|
||||
"description": "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.",
|
||||
"enum": [
|
||||
"MEMCACHE_VERSION_UNSPECIFIED",
|
||||
"MEMCACHE_1_5"
|
||||
"MEMCACHE_1_5",
|
||||
"MEMCACHE_1_6_15"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"",
|
||||
"Memcached 1.5 version."
|
||||
"Memcache version is not specified by customer",
|
||||
"Memcached 1.5 version.",
|
||||
"Memcached 1.6.15 version."
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
@@ -1147,6 +1200,13 @@
|
||||
"$ref": "MemcacheParameters",
|
||||
"description": "User defined parameters to apply to the memcached process on each node."
|
||||
},
|
||||
"reservedIpRangeId": {
|
||||
"description": "Optional. Contains the id of allocated IP address ranges associated with the private service access connection for example, \"test-default\" associated with IP range 10.0.0.0/29.",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": "array"
|
||||
},
|
||||
"state": {
|
||||
"description": "Output only. The state of this Memcached instance.",
|
||||
"enum": [
|
||||
@@ -1155,7 +1215,8 @@
|
||||
"READY",
|
||||
"UPDATING",
|
||||
"DELETING",
|
||||
"PERFORMING_MAINTENANCE"
|
||||
"PERFORMING_MAINTENANCE",
|
||||
"MEMCACHE_VERSION_UPGRADING"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"State not set.",
|
||||
@@ -1163,7 +1224,8 @@
|
||||
"Memcached instance has been created and ready to be used.",
|
||||
"Memcached instance is updating configuration such as maintenance policy and schedule.",
|
||||
"Memcached instance is being deleted.",
|
||||
"Memcached instance is going through maintenance, e.g. data plane rollout."
|
||||
"Memcached instance is going through maintenance, e.g. data plane rollout.",
|
||||
"Memcached instance is undergoing memcached engine version upgrade."
|
||||
],
|
||||
"readOnly": true,
|
||||
"type": "string"
|
||||
@@ -1273,7 +1335,7 @@
|
||||
"type": "object"
|
||||
},
|
||||
"Location": {
|
||||
"description": "A resource that represents Google Cloud Platform location.",
|
||||
"description": "A resource that represents a Google Cloud location.",
|
||||
"id": "Location",
|
||||
"properties": {
|
||||
"displayName": {
|
||||
@@ -1437,6 +1499,26 @@
|
||||
"readOnly": true,
|
||||
"type": "string"
|
||||
},
|
||||
"memcacheFullVersion": {
|
||||
"description": "Output only. The full version of memcached server running on this node. e.g. - memcached-1.5.16",
|
||||
"readOnly": true,
|
||||
"type": "string"
|
||||
},
|
||||
"memcacheVersion": {
|
||||
"description": "Output only. Major version of memcached server running on this node, e.g. MEMCACHE_1_5",
|
||||
"enum": [
|
||||
"MEMCACHE_VERSION_UNSPECIFIED",
|
||||
"MEMCACHE_1_5",
|
||||
"MEMCACHE_1_6_15"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"Memcache version is not specified by customer",
|
||||
"Memcached 1.5 version.",
|
||||
"Memcached 1.6.15 version."
|
||||
],
|
||||
"readOnly": true,
|
||||
"type": "string"
|
||||
},
|
||||
"nodeId": {
|
||||
"description": "Output only. Identifier of the Memcached node. The node id does not include project or location like the Memcached instance name.",
|
||||
"readOnly": true,
|
||||
@@ -1530,7 +1612,7 @@
|
||||
"description": "Properties of the object. Contains field @type with type URL.",
|
||||
"type": "any"
|
||||
},
|
||||
"description": "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`.",
|
||||
"description": "The normal, successful response of the operation. 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`.",
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
@@ -1743,7 +1825,7 @@
|
||||
"type": "string"
|
||||
},
|
||||
"denyMaintenancePeriods": {
|
||||
"description": "Deny Maintenance Period that is applied to resource to indicate when maintenance is forbidden. User can specify zero or more non-overlapping deny periods. Maximum number of deny_maintenance_periods expected is one.",
|
||||
"description": "Deny Maintenance Period that is applied to resource to indicate when maintenance is forbidden. The protocol supports zero-to-many such periods, but the current SLM Rollout implementation only supports zero-to-one.",
|
||||
"items": {
|
||||
"$ref": "DenyMaintenancePeriod"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user