google-cloud-spanner-admin-instance-v1 0.8.0 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/google/cloud/spanner/admin/instance/v1/instance_admin/client.rb +30 -36
- data/lib/google/cloud/spanner/admin/instance/v1/instance_admin/operations.rb +14 -16
- data/lib/google/cloud/spanner/admin/instance/v1/instance_admin/rest/client.rb +1701 -0
- data/lib/google/cloud/spanner/admin/instance/v1/instance_admin/rest/operations.rb +824 -0
- data/lib/google/cloud/spanner/admin/instance/v1/instance_admin/rest/service_stub.rb +885 -0
- data/lib/google/cloud/spanner/admin/instance/v1/instance_admin/rest.rb +77 -0
- data/lib/google/cloud/spanner/admin/instance/v1/instance_admin.rb +7 -1
- data/lib/google/cloud/spanner/admin/instance/v1/rest.rb +41 -0
- data/lib/google/cloud/spanner/admin/instance/v1/version.rb +1 -1
- data/lib/google/cloud/spanner/admin/instance/v1.rb +7 -2
- data/lib/google/spanner/admin/instance/v1/common_pb.rb +25 -6
- data/lib/google/spanner/admin/instance/v1/spanner_instance_admin_pb.rb +28 -138
- data/proto_docs/google/api/client.rb +381 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/iam/v1/policy.rb +8 -4
- data/proto_docs/google/protobuf/any.rb +7 -4
- data/proto_docs/google/protobuf/timestamp.rb +1 -3
- data/proto_docs/google/rpc/status.rb +4 -2
- metadata +14 -7
@@ -0,0 +1,77 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "gapic/rest"
|
20
|
+
require "gapic/config"
|
21
|
+
require "gapic/config/method"
|
22
|
+
|
23
|
+
require "google/cloud/spanner/admin/instance/v1/version"
|
24
|
+
|
25
|
+
require "google/cloud/spanner/admin/instance/v1/instance_admin/credentials"
|
26
|
+
require "google/cloud/spanner/admin/instance/v1/instance_admin/paths"
|
27
|
+
require "google/cloud/spanner/admin/instance/v1/instance_admin/rest/operations"
|
28
|
+
require "google/cloud/spanner/admin/instance/v1/instance_admin/rest/client"
|
29
|
+
|
30
|
+
module Google
|
31
|
+
module Cloud
|
32
|
+
module Spanner
|
33
|
+
module Admin
|
34
|
+
module Instance
|
35
|
+
module V1
|
36
|
+
##
|
37
|
+
# Cloud Spanner Instance Admin API
|
38
|
+
#
|
39
|
+
# The Cloud Spanner Instance Admin API can be used to create, delete,
|
40
|
+
# modify and list instances. Instances are dedicated Cloud Spanner serving
|
41
|
+
# and storage resources to be used by Cloud Spanner databases.
|
42
|
+
#
|
43
|
+
# Each instance has a "configuration", which dictates where the
|
44
|
+
# serving resources for the Cloud Spanner instance are located (e.g.,
|
45
|
+
# US-central, Europe). Configurations are created by Google based on
|
46
|
+
# resource availability.
|
47
|
+
#
|
48
|
+
# Cloud Spanner billing is based on the instances that exist and their
|
49
|
+
# sizes. After an instance exists, there are no additional
|
50
|
+
# per-database or per-operation charges for use of the instance
|
51
|
+
# (though there may be additional network bandwidth charges).
|
52
|
+
# Instances offer isolation: problems with databases in one instance
|
53
|
+
# will not affect other instances. However, within an instance
|
54
|
+
# databases can affect each other. For example, if one database in an
|
55
|
+
# instance receives a lot of requests and consumes most of the
|
56
|
+
# instance resources, fewer resources are available for other
|
57
|
+
# databases in that instance, and their performance may suffer.
|
58
|
+
#
|
59
|
+
# To load this service and instantiate a REST client:
|
60
|
+
#
|
61
|
+
# require "google/cloud/spanner/admin/instance/v1/instance_admin/rest"
|
62
|
+
# client = ::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Rest::Client.new
|
63
|
+
#
|
64
|
+
module InstanceAdmin
|
65
|
+
# Client for the REST transport
|
66
|
+
module Rest
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
helper_path = ::File.join __dir__, "rest", "helpers.rb"
|
77
|
+
require "google/cloud/spanner/admin/instance/v1/instance_admin/rest/helpers" if ::File.file? helper_path
|
@@ -26,6 +26,7 @@ require "google/cloud/spanner/admin/instance/v1/instance_admin/credentials"
|
|
26
26
|
require "google/cloud/spanner/admin/instance/v1/instance_admin/paths"
|
27
27
|
require "google/cloud/spanner/admin/instance/v1/instance_admin/operations"
|
28
28
|
require "google/cloud/spanner/admin/instance/v1/instance_admin/client"
|
29
|
+
require "google/cloud/spanner/admin/instance/v1/instance_admin/rest"
|
29
30
|
|
30
31
|
module Google
|
31
32
|
module Cloud
|
@@ -56,11 +57,16 @@ module Google
|
|
56
57
|
# instance resources, fewer resources are available for other
|
57
58
|
# databases in that instance, and their performance may suffer.
|
58
59
|
#
|
59
|
-
#
|
60
|
+
# @example Load this service and instantiate a gRPC client
|
60
61
|
#
|
61
62
|
# require "google/cloud/spanner/admin/instance/v1/instance_admin"
|
62
63
|
# client = ::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client.new
|
63
64
|
#
|
65
|
+
# @example Load this service and instantiate a REST client
|
66
|
+
#
|
67
|
+
# require "google/cloud/spanner/admin/instance/v1/instance_admin/rest"
|
68
|
+
# client = ::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Rest::Client.new
|
69
|
+
#
|
64
70
|
module InstanceAdmin
|
65
71
|
end
|
66
72
|
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "google/cloud/spanner/admin/instance/v1/instance_admin/rest"
|
20
|
+
require "google/cloud/spanner/admin/instance/v1/version"
|
21
|
+
|
22
|
+
module Google
|
23
|
+
module Cloud
|
24
|
+
module Spanner
|
25
|
+
module Admin
|
26
|
+
module Instance
|
27
|
+
##
|
28
|
+
# To load just the REST part of this package, including all its services, and instantiate a REST client:
|
29
|
+
#
|
30
|
+
# @example
|
31
|
+
#
|
32
|
+
# require "google/cloud/spanner/admin/instance/v1/rest"
|
33
|
+
# client = ::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Rest::Client.new
|
34
|
+
#
|
35
|
+
module V1
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -25,13 +25,18 @@ module Google
|
|
25
25
|
module Admin
|
26
26
|
module Instance
|
27
27
|
##
|
28
|
-
#
|
28
|
+
# API client module.
|
29
29
|
#
|
30
|
-
# @example
|
30
|
+
# @example Load this package, including all its services, and instantiate a gRPC client
|
31
31
|
#
|
32
32
|
# require "google/cloud/spanner/admin/instance/v1"
|
33
33
|
# client = ::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client.new
|
34
34
|
#
|
35
|
+
# @example Load this package, including all its services, and instantiate a REST client
|
36
|
+
#
|
37
|
+
# require "google/cloud/spanner/admin/instance/v1"
|
38
|
+
# client = ::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Rest::Client.new
|
39
|
+
#
|
35
40
|
module V1
|
36
41
|
end
|
37
42
|
end
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
3
|
# source: google/spanner/admin/instance/v1/common.proto
|
3
4
|
|
@@ -5,14 +6,32 @@ require 'google/protobuf'
|
|
5
6
|
|
6
7
|
require 'google/protobuf/timestamp_pb'
|
7
8
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
9
|
+
|
10
|
+
descriptor_data = "\n-google/spanner/admin/instance/v1/common.proto\x12 google.spanner.admin.instance.v1\x1a\x1fgoogle/protobuf/timestamp.proto\"\x8b\x01\n\x11OperationProgress\x12\x18\n\x10progress_percent\x18\x01 \x01(\x05\x12.\n\nstart_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\xfd\x01\n$com.google.spanner.admin.instance.v1B\x0b\x43ommonProtoP\x01ZFcloud.google.com/go/spanner/admin/instance/apiv1/instancepb;instancepb\xaa\x02&Google.Cloud.Spanner.Admin.Instance.V1\xca\x02&Google\\Cloud\\Spanner\\Admin\\Instance\\V1\xea\x02+Google::Cloud::Spanner::Admin::Instance::V1b\x06proto3"
|
11
|
+
|
12
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
13
|
+
|
14
|
+
begin
|
15
|
+
pool.add_serialized_file(descriptor_data)
|
16
|
+
rescue TypeError => e
|
17
|
+
# Compatibility code: will be removed in the next major version.
|
18
|
+
require 'google/protobuf/descriptor_pb'
|
19
|
+
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
20
|
+
parsed.clear_dependency
|
21
|
+
serialized = parsed.class.encode(parsed)
|
22
|
+
file = pool.add_serialized_file(serialized)
|
23
|
+
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
24
|
+
imports = [
|
25
|
+
["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
|
26
|
+
]
|
27
|
+
imports.each do |type_name, expected_filename|
|
28
|
+
import_file = pool.lookup(type_name).file_descriptor
|
29
|
+
if import_file.name != expected_filename
|
30
|
+
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
14
31
|
end
|
15
32
|
end
|
33
|
+
warn "Each proto file must use a consistent fully-qualified name."
|
34
|
+
warn "This will become an error in the next major version."
|
16
35
|
end
|
17
36
|
|
18
37
|
module Google
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
3
|
# source: google/spanner/admin/instance/v1/spanner_instance_admin.proto
|
3
4
|
|
@@ -15,146 +16,35 @@ require 'google/protobuf/field_mask_pb'
|
|
15
16
|
require 'google/protobuf/timestamp_pb'
|
16
17
|
require 'google/spanner/admin/instance/v1/common_pb'
|
17
18
|
|
18
|
-
|
19
|
-
add_file("google/spanner/admin/instance/v1/spanner_instance_admin.proto", :syntax => :proto3) do
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
end
|
44
|
-
add_enum "google.spanner.admin.instance.v1.InstanceConfig.Type" do
|
45
|
-
value :TYPE_UNSPECIFIED, 0
|
46
|
-
value :GOOGLE_MANAGED, 1
|
47
|
-
value :USER_MANAGED, 2
|
48
|
-
end
|
49
|
-
add_enum "google.spanner.admin.instance.v1.InstanceConfig.State" do
|
50
|
-
value :STATE_UNSPECIFIED, 0
|
51
|
-
value :CREATING, 1
|
52
|
-
value :READY, 2
|
53
|
-
end
|
54
|
-
add_message "google.spanner.admin.instance.v1.Instance" do
|
55
|
-
optional :name, :string, 1
|
56
|
-
optional :config, :string, 2
|
57
|
-
optional :display_name, :string, 3
|
58
|
-
optional :node_count, :int32, 5
|
59
|
-
optional :processing_units, :int32, 9
|
60
|
-
optional :state, :enum, 6, "google.spanner.admin.instance.v1.Instance.State"
|
61
|
-
map :labels, :string, :string, 7
|
62
|
-
repeated :endpoint_uris, :string, 8
|
63
|
-
optional :create_time, :message, 11, "google.protobuf.Timestamp"
|
64
|
-
optional :update_time, :message, 12, "google.protobuf.Timestamp"
|
65
|
-
end
|
66
|
-
add_enum "google.spanner.admin.instance.v1.Instance.State" do
|
67
|
-
value :STATE_UNSPECIFIED, 0
|
68
|
-
value :CREATING, 1
|
69
|
-
value :READY, 2
|
70
|
-
end
|
71
|
-
add_message "google.spanner.admin.instance.v1.ListInstanceConfigsRequest" do
|
72
|
-
optional :parent, :string, 1
|
73
|
-
optional :page_size, :int32, 2
|
74
|
-
optional :page_token, :string, 3
|
75
|
-
end
|
76
|
-
add_message "google.spanner.admin.instance.v1.ListInstanceConfigsResponse" do
|
77
|
-
repeated :instance_configs, :message, 1, "google.spanner.admin.instance.v1.InstanceConfig"
|
78
|
-
optional :next_page_token, :string, 2
|
79
|
-
end
|
80
|
-
add_message "google.spanner.admin.instance.v1.GetInstanceConfigRequest" do
|
81
|
-
optional :name, :string, 1
|
82
|
-
end
|
83
|
-
add_message "google.spanner.admin.instance.v1.CreateInstanceConfigRequest" do
|
84
|
-
optional :parent, :string, 1
|
85
|
-
optional :instance_config_id, :string, 2
|
86
|
-
optional :instance_config, :message, 3, "google.spanner.admin.instance.v1.InstanceConfig"
|
87
|
-
optional :validate_only, :bool, 4
|
88
|
-
end
|
89
|
-
add_message "google.spanner.admin.instance.v1.UpdateInstanceConfigRequest" do
|
90
|
-
optional :instance_config, :message, 1, "google.spanner.admin.instance.v1.InstanceConfig"
|
91
|
-
optional :update_mask, :message, 2, "google.protobuf.FieldMask"
|
92
|
-
optional :validate_only, :bool, 3
|
93
|
-
end
|
94
|
-
add_message "google.spanner.admin.instance.v1.DeleteInstanceConfigRequest" do
|
95
|
-
optional :name, :string, 1
|
96
|
-
optional :etag, :string, 2
|
97
|
-
optional :validate_only, :bool, 3
|
98
|
-
end
|
99
|
-
add_message "google.spanner.admin.instance.v1.ListInstanceConfigOperationsRequest" do
|
100
|
-
optional :parent, :string, 1
|
101
|
-
optional :filter, :string, 2
|
102
|
-
optional :page_size, :int32, 3
|
103
|
-
optional :page_token, :string, 4
|
104
|
-
end
|
105
|
-
add_message "google.spanner.admin.instance.v1.ListInstanceConfigOperationsResponse" do
|
106
|
-
repeated :operations, :message, 1, "google.longrunning.Operation"
|
107
|
-
optional :next_page_token, :string, 2
|
108
|
-
end
|
109
|
-
add_message "google.spanner.admin.instance.v1.GetInstanceRequest" do
|
110
|
-
optional :name, :string, 1
|
111
|
-
optional :field_mask, :message, 2, "google.protobuf.FieldMask"
|
112
|
-
end
|
113
|
-
add_message "google.spanner.admin.instance.v1.CreateInstanceRequest" do
|
114
|
-
optional :parent, :string, 1
|
115
|
-
optional :instance_id, :string, 2
|
116
|
-
optional :instance, :message, 3, "google.spanner.admin.instance.v1.Instance"
|
117
|
-
end
|
118
|
-
add_message "google.spanner.admin.instance.v1.ListInstancesRequest" do
|
119
|
-
optional :parent, :string, 1
|
120
|
-
optional :page_size, :int32, 2
|
121
|
-
optional :page_token, :string, 3
|
122
|
-
optional :filter, :string, 4
|
123
|
-
end
|
124
|
-
add_message "google.spanner.admin.instance.v1.ListInstancesResponse" do
|
125
|
-
repeated :instances, :message, 1, "google.spanner.admin.instance.v1.Instance"
|
126
|
-
optional :next_page_token, :string, 2
|
127
|
-
end
|
128
|
-
add_message "google.spanner.admin.instance.v1.UpdateInstanceRequest" do
|
129
|
-
optional :instance, :message, 1, "google.spanner.admin.instance.v1.Instance"
|
130
|
-
optional :field_mask, :message, 2, "google.protobuf.FieldMask"
|
131
|
-
end
|
132
|
-
add_message "google.spanner.admin.instance.v1.DeleteInstanceRequest" do
|
133
|
-
optional :name, :string, 1
|
134
|
-
end
|
135
|
-
add_message "google.spanner.admin.instance.v1.CreateInstanceMetadata" do
|
136
|
-
optional :instance, :message, 1, "google.spanner.admin.instance.v1.Instance"
|
137
|
-
optional :start_time, :message, 2, "google.protobuf.Timestamp"
|
138
|
-
optional :cancel_time, :message, 3, "google.protobuf.Timestamp"
|
139
|
-
optional :end_time, :message, 4, "google.protobuf.Timestamp"
|
140
|
-
end
|
141
|
-
add_message "google.spanner.admin.instance.v1.UpdateInstanceMetadata" do
|
142
|
-
optional :instance, :message, 1, "google.spanner.admin.instance.v1.Instance"
|
143
|
-
optional :start_time, :message, 2, "google.protobuf.Timestamp"
|
144
|
-
optional :cancel_time, :message, 3, "google.protobuf.Timestamp"
|
145
|
-
optional :end_time, :message, 4, "google.protobuf.Timestamp"
|
146
|
-
end
|
147
|
-
add_message "google.spanner.admin.instance.v1.CreateInstanceConfigMetadata" do
|
148
|
-
optional :instance_config, :message, 1, "google.spanner.admin.instance.v1.InstanceConfig"
|
149
|
-
optional :progress, :message, 2, "google.spanner.admin.instance.v1.OperationProgress"
|
150
|
-
optional :cancel_time, :message, 3, "google.protobuf.Timestamp"
|
151
|
-
end
|
152
|
-
add_message "google.spanner.admin.instance.v1.UpdateInstanceConfigMetadata" do
|
153
|
-
optional :instance_config, :message, 1, "google.spanner.admin.instance.v1.InstanceConfig"
|
154
|
-
optional :progress, :message, 2, "google.spanner.admin.instance.v1.OperationProgress"
|
155
|
-
optional :cancel_time, :message, 3, "google.protobuf.Timestamp"
|
19
|
+
|
20
|
+
descriptor_data = "\n=google/spanner/admin/instance/v1/spanner_instance_admin.proto\x12 google.spanner.admin.instance.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1egoogle/iam/v1/iam_policy.proto\x1a\x1agoogle/iam/v1/policy.proto\x1a#google/longrunning/operations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a-google/spanner/admin/instance/v1/common.proto\"\xda\x01\n\x0bReplicaInfo\x12\x10\n\x08location\x18\x01 \x01(\t\x12G\n\x04type\x18\x02 \x01(\x0e\x32\x39.google.spanner.admin.instance.v1.ReplicaInfo.ReplicaType\x12\x1f\n\x17\x64\x65\x66\x61ult_leader_location\x18\x03 \x01(\x08\"O\n\x0bReplicaType\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nREAD_WRITE\x10\x01\x12\r\n\tREAD_ONLY\x10\x02\x12\x0b\n\x07WITNESS\x10\x03\"\xbe\x06\n\x0eInstanceConfig\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t\x12O\n\x0b\x63onfig_type\x18\x05 \x01(\x0e\x32\x35.google.spanner.admin.instance.v1.InstanceConfig.TypeB\x03\xe0\x41\x03\x12?\n\x08replicas\x18\x03 \x03(\x0b\x32-.google.spanner.admin.instance.v1.ReplicaInfo\x12M\n\x11optional_replicas\x18\x06 \x03(\x0b\x32-.google.spanner.admin.instance.v1.ReplicaInfoB\x03\xe0\x41\x03\x12?\n\x0b\x62\x61se_config\x18\x07 \x01(\tB*\xfa\x41\'\n%spanner.googleapis.com/InstanceConfig\x12L\n\x06labels\x18\x08 \x03(\x0b\x32<.google.spanner.admin.instance.v1.InstanceConfig.LabelsEntry\x12\x0c\n\x04\x65tag\x18\t \x01(\t\x12\x16\n\x0eleader_options\x18\x04 \x03(\t\x12\x18\n\x0breconciling\x18\n \x01(\x08\x42\x03\xe0\x41\x03\x12J\n\x05state\x18\x0b \x01(\x0e\x32\x36.google.spanner.admin.instance.v1.InstanceConfig.StateB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"B\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x12\n\x0eGOOGLE_MANAGED\x10\x01\x12\x10\n\x0cUSER_MANAGED\x10\x02\"7\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x43REATING\x10\x01\x12\t\n\x05READY\x10\x02:`\xea\x41]\n%spanner.googleapis.com/InstanceConfig\x12\x34projects/{project}/instanceConfigs/{instance_config}\"\xed\x04\n\x08Instance\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12=\n\x06\x63onfig\x18\x02 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%spanner.googleapis.com/InstanceConfig\x12\x19\n\x0c\x64isplay_name\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x12\n\nnode_count\x18\x05 \x01(\x05\x12\x18\n\x10processing_units\x18\t \x01(\x05\x12\x44\n\x05state\x18\x06 \x01(\x0e\x32\x30.google.spanner.admin.instance.v1.Instance.StateB\x03\xe0\x41\x03\x12\x46\n\x06labels\x18\x07 \x03(\x0b\x32\x36.google.spanner.admin.instance.v1.Instance.LabelsEntry\x12\x15\n\rendpoint_uris\x18\x08 \x03(\t\x12\x34\n\x0b\x63reate_time\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x0c \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"7\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x43REATING\x10\x01\x12\t\n\x05READY\x10\x02:M\xea\x41J\n\x1fspanner.googleapis.com/Instance\x12\'projects/{project}/instances/{instance}\"\x88\x01\n\x1aListInstanceConfigsRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+cloudresourcemanager.googleapis.com/Project\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"\x82\x01\n\x1bListInstanceConfigsResponse\x12J\n\x10instance_configs\x18\x01 \x03(\x0b\x32\x30.google.spanner.admin.instance.v1.InstanceConfig\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"W\n\x18GetInstanceConfigRequest\x12;\n\x04name\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%spanner.googleapis.com/InstanceConfig\"\xea\x01\n\x1b\x43reateInstanceConfigRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+cloudresourcemanager.googleapis.com/Project\x12\x1f\n\x12instance_config_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12N\n\x0finstance_config\x18\x03 \x01(\x0b\x32\x30.google.spanner.admin.instance.v1.InstanceConfigB\x03\xe0\x41\x02\x12\x15\n\rvalidate_only\x18\x04 \x01(\x08\"\xba\x01\n\x1bUpdateInstanceConfigRequest\x12N\n\x0finstance_config\x18\x01 \x01(\x0b\x32\x30.google.spanner.admin.instance.v1.InstanceConfigB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12\x15\n\rvalidate_only\x18\x03 \x01(\x08\"\x7f\n\x1b\x44\x65leteInstanceConfigRequest\x12;\n\x04name\x18\x01 \x01(\tB-\xe0\x41\x02\xfa\x41\'\n%spanner.googleapis.com/InstanceConfig\x12\x0c\n\x04\x65tag\x18\x02 \x01(\t\x12\x15\n\rvalidate_only\x18\x03 \x01(\x08\"\xa1\x01\n#ListInstanceConfigOperationsRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+cloudresourcemanager.googleapis.com/Project\x12\x0e\n\x06\x66ilter\x18\x02 \x01(\t\x12\x11\n\tpage_size\x18\x03 \x01(\x05\x12\x12\n\npage_token\x18\x04 \x01(\t\"r\n$ListInstanceConfigOperationsResponse\x12\x31\n\noperations\x18\x01 \x03(\x0b\x32\x1d.google.longrunning.Operation\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"{\n\x12GetInstanceRequest\x12\x35\n\x04name\x18\x01 \x01(\tB\'\xe0\x41\x02\xfa\x41!\n\x1fspanner.googleapis.com/Instance\x12.\n\nfield_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"\xb9\x01\n\x15\x43reateInstanceRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+cloudresourcemanager.googleapis.com/Project\x12\x18\n\x0binstance_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x41\n\x08instance\x18\x03 \x01(\x0b\x32*.google.spanner.admin.instance.v1.InstanceB\x03\xe0\x41\x02\"\x92\x01\n\x14ListInstancesRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+cloudresourcemanager.googleapis.com/Project\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\"o\n\x15ListInstancesResponse\x12=\n\tinstances\x18\x01 \x03(\x0b\x32*.google.spanner.admin.instance.v1.Instance\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x8f\x01\n\x15UpdateInstanceRequest\x12\x41\n\x08instance\x18\x01 \x01(\x0b\x32*.google.spanner.admin.instance.v1.InstanceB\x03\xe0\x41\x02\x12\x33\n\nfield_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\"N\n\x15\x44\x65leteInstanceRequest\x12\x35\n\x04name\x18\x01 \x01(\tB\'\xe0\x41\x02\xfa\x41!\n\x1fspanner.googleapis.com/Instance\"\xe5\x01\n\x16\x43reateInstanceMetadata\x12<\n\x08instance\x18\x01 \x01(\x0b\x32*.google.spanner.admin.instance.v1.Instance\x12.\n\nstart_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0b\x63\x61ncel_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xe5\x01\n\x16UpdateInstanceMetadata\x12<\n\x08instance\x18\x01 \x01(\x0b\x32*.google.spanner.admin.instance.v1.Instance\x12.\n\nstart_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0b\x63\x61ncel_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xe1\x01\n\x1c\x43reateInstanceConfigMetadata\x12I\n\x0finstance_config\x18\x01 \x01(\x0b\x32\x30.google.spanner.admin.instance.v1.InstanceConfig\x12\x45\n\x08progress\x18\x02 \x01(\x0b\x32\x33.google.spanner.admin.instance.v1.OperationProgress\x12/\n\x0b\x63\x61ncel_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xe1\x01\n\x1cUpdateInstanceConfigMetadata\x12I\n\x0finstance_config\x18\x01 \x01(\x0b\x32\x30.google.spanner.admin.instance.v1.InstanceConfig\x12\x45\n\x08progress\x18\x02 \x01(\x0b\x32\x33.google.spanner.admin.instance.v1.OperationProgress\x12/\n\x0b\x63\x61ncel_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp2\xf2\x18\n\rInstanceAdmin\x12\xcc\x01\n\x13ListInstanceConfigs\x12<.google.spanner.admin.instance.v1.ListInstanceConfigsRequest\x1a=.google.spanner.admin.instance.v1.ListInstanceConfigsResponse\"8\x82\xd3\xe4\x93\x02)\x12\'/v1/{parent=projects/*}/instanceConfigs\xda\x41\x06parent\x12\xb9\x01\n\x11GetInstanceConfig\x12:.google.spanner.admin.instance.v1.GetInstanceConfigRequest\x1a\x30.google.spanner.admin.instance.v1.InstanceConfig\"6\x82\xd3\xe4\x93\x02)\x12\'/v1/{name=projects/*/instanceConfigs/*}\xda\x41\x04name\x12\xc8\x02\n\x14\x43reateInstanceConfig\x12=.google.spanner.admin.instance.v1.CreateInstanceConfigRequest\x1a\x1d.google.longrunning.Operation\"\xd1\x01\x82\xd3\xe4\x93\x02,\"\'/v1/{parent=projects/*}/instanceConfigs:\x01*\xda\x41)parent,instance_config,instance_config_id\xca\x41p\n/google.spanner.admin.instance.v1.InstanceConfig\x12=google.spanner.admin.instance.v1.CreateInstanceConfigMetadata\x12\xca\x02\n\x14UpdateInstanceConfig\x12=.google.spanner.admin.instance.v1.UpdateInstanceConfigRequest\x1a\x1d.google.longrunning.Operation\"\xd3\x01\x82\xd3\xe4\x93\x02<27/v1/{instance_config.name=projects/*/instanceConfigs/*}:\x01*\xda\x41\x1binstance_config,update_mask\xca\x41p\n/google.spanner.admin.instance.v1.InstanceConfig\x12=google.spanner.admin.instance.v1.UpdateInstanceConfigMetadata\x12\xa5\x01\n\x14\x44\x65leteInstanceConfig\x12=.google.spanner.admin.instance.v1.DeleteInstanceConfigRequest\x1a\x16.google.protobuf.Empty\"6\x82\xd3\xe4\x93\x02)*\'/v1/{name=projects/*/instanceConfigs/*}\xda\x41\x04name\x12\xf0\x01\n\x1cListInstanceConfigOperations\x12\x45.google.spanner.admin.instance.v1.ListInstanceConfigOperationsRequest\x1a\x46.google.spanner.admin.instance.v1.ListInstanceConfigOperationsResponse\"A\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{parent=projects/*}/instanceConfigOperations\xda\x41\x06parent\x12\xb4\x01\n\rListInstances\x12\x36.google.spanner.admin.instance.v1.ListInstancesRequest\x1a\x37.google.spanner.admin.instance.v1.ListInstancesResponse\"2\x82\xd3\xe4\x93\x02#\x12!/v1/{parent=projects/*}/instances\xda\x41\x06parent\x12\xa1\x01\n\x0bGetInstance\x12\x34.google.spanner.admin.instance.v1.GetInstanceRequest\x1a*.google.spanner.admin.instance.v1.Instance\"0\x82\xd3\xe4\x93\x02#\x12!/v1/{name=projects/*/instances/*}\xda\x41\x04name\x12\x9c\x02\n\x0e\x43reateInstance\x12\x37.google.spanner.admin.instance.v1.CreateInstanceRequest\x1a\x1d.google.longrunning.Operation\"\xb1\x01\x82\xd3\xe4\x93\x02&\"!/v1/{parent=projects/*}/instances:\x01*\xda\x41\x1bparent,instance_id,instance\xca\x41\x64\n)google.spanner.admin.instance.v1.Instance\x12\x37google.spanner.admin.instance.v1.CreateInstanceMetadata\x12\x9d\x02\n\x0eUpdateInstance\x12\x37.google.spanner.admin.instance.v1.UpdateInstanceRequest\x1a\x1d.google.longrunning.Operation\"\xb2\x01\x82\xd3\xe4\x93\x02/2*/v1/{instance.name=projects/*/instances/*}:\x01*\xda\x41\x13instance,field_mask\xca\x41\x64\n)google.spanner.admin.instance.v1.Instance\x12\x37google.spanner.admin.instance.v1.UpdateInstanceMetadata\x12\x93\x01\n\x0e\x44\x65leteInstance\x12\x37.google.spanner.admin.instance.v1.DeleteInstanceRequest\x1a\x16.google.protobuf.Empty\"0\x82\xd3\xe4\x93\x02#*!/v1/{name=projects/*/instances/*}\xda\x41\x04name\x12\x9a\x01\n\x0cSetIamPolicy\x12\".google.iam.v1.SetIamPolicyRequest\x1a\x15.google.iam.v1.Policy\"O\x82\xd3\xe4\x93\x02\x37\"2/v1/{resource=projects/*/instances/*}:setIamPolicy:\x01*\xda\x41\x0fresource,policy\x12\x93\x01\n\x0cGetIamPolicy\x12\".google.iam.v1.GetIamPolicyRequest\x1a\x15.google.iam.v1.Policy\"H\x82\xd3\xe4\x93\x02\x37\"2/v1/{resource=projects/*/instances/*}:getIamPolicy:\x01*\xda\x41\x08resource\x12\xc5\x01\n\x12TestIamPermissions\x12(.google.iam.v1.TestIamPermissionsRequest\x1a).google.iam.v1.TestIamPermissionsResponse\"Z\x82\xd3\xe4\x93\x02=\"8/v1/{resource=projects/*/instances/*}:testIamPermissions:\x01*\xda\x41\x14resource,permissions\x1ax\xca\x41\x16spanner.googleapis.com\xd2\x41\\https://www.googleapis.com/auth/cloud-platform,https://www.googleapis.com/auth/spanner.adminB\x8b\x02\n$com.google.spanner.admin.instance.v1B\x19SpannerInstanceAdminProtoP\x01ZFcloud.google.com/go/spanner/admin/instance/apiv1/instancepb;instancepb\xaa\x02&Google.Cloud.Spanner.Admin.Instance.V1\xca\x02&Google\\Cloud\\Spanner\\Admin\\Instance\\V1\xea\x02+Google::Cloud::Spanner::Admin::Instance::V1b\x06proto3"
|
21
|
+
|
22
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
23
|
+
|
24
|
+
begin
|
25
|
+
pool.add_serialized_file(descriptor_data)
|
26
|
+
rescue TypeError => e
|
27
|
+
# Compatibility code: will be removed in the next major version.
|
28
|
+
require 'google/protobuf/descriptor_pb'
|
29
|
+
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
30
|
+
parsed.clear_dependency
|
31
|
+
serialized = parsed.class.encode(parsed)
|
32
|
+
file = pool.add_serialized_file(serialized)
|
33
|
+
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
34
|
+
imports = [
|
35
|
+
["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
|
36
|
+
["google.protobuf.FieldMask", "google/protobuf/field_mask.proto"],
|
37
|
+
["google.longrunning.Operation", "google/longrunning/operations.proto"],
|
38
|
+
["google.spanner.admin.instance.v1.OperationProgress", "google/spanner/admin/instance/v1/common.proto"],
|
39
|
+
]
|
40
|
+
imports.each do |type_name, expected_filename|
|
41
|
+
import_file = pool.lookup(type_name).file_descriptor
|
42
|
+
if import_file.name != expected_filename
|
43
|
+
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
156
44
|
end
|
157
45
|
end
|
46
|
+
warn "Each proto file must use a consistent fully-qualified name."
|
47
|
+
warn "This will become an error in the next major version."
|
158
48
|
end
|
159
49
|
|
160
50
|
module Google
|