google-cloud-spanner-admin-instance-v1 0.13.2 → 0.15.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 +1 -1
- data/lib/google/cloud/spanner/admin/instance/v1/instance_admin/client.rb +925 -135
- data/lib/google/cloud/spanner/admin/instance/v1/instance_admin/paths.rb +19 -0
- data/lib/google/cloud/spanner/admin/instance/v1/instance_admin/rest/client.rb +749 -4
- data/lib/google/cloud/spanner/admin/instance/v1/instance_admin/rest/service_stub.rb +356 -0
- data/lib/google/cloud/spanner/admin/instance/v1/version.rb +1 -1
- data/lib/google/spanner/admin/instance/v1/spanner_instance_admin_pb.rb +13 -1
- data/lib/google/spanner/admin/instance/v1/spanner_instance_admin_services_pb.rb +111 -0
- data/proto_docs/google/spanner/admin/instance/v1/spanner_instance_admin.rb +374 -0
- metadata +4 -116
@@ -329,6 +329,44 @@ module Google
|
|
329
329
|
result
|
330
330
|
end
|
331
331
|
|
332
|
+
##
|
333
|
+
# Baseline implementation for the list_instance_partitions REST call
|
334
|
+
#
|
335
|
+
# @param request_pb [::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionsRequest]
|
336
|
+
# A request object representing the call parameters. Required.
|
337
|
+
# @param options [::Gapic::CallOptions]
|
338
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
339
|
+
#
|
340
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
341
|
+
# @yieldparam result [::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionsResponse]
|
342
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
343
|
+
#
|
344
|
+
# @return [::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionsResponse]
|
345
|
+
# A result object deserialized from the server's reply
|
346
|
+
def list_instance_partitions request_pb, options = nil
|
347
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
348
|
+
|
349
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_list_instance_partitions_request request_pb
|
350
|
+
query_string_params = if query_string_params.any?
|
351
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
352
|
+
else
|
353
|
+
{}
|
354
|
+
end
|
355
|
+
|
356
|
+
response = @client_stub.make_http_request(
|
357
|
+
verb,
|
358
|
+
uri: uri,
|
359
|
+
body: body || "",
|
360
|
+
params: query_string_params,
|
361
|
+
options: options
|
362
|
+
)
|
363
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
364
|
+
result = ::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionsResponse.decode_json response.body, ignore_unknown_fields: true
|
365
|
+
|
366
|
+
yield result, operation if block_given?
|
367
|
+
result
|
368
|
+
end
|
369
|
+
|
332
370
|
##
|
333
371
|
# Baseline implementation for the get_instance REST call
|
334
372
|
#
|
@@ -595,6 +633,196 @@ module Google
|
|
595
633
|
result
|
596
634
|
end
|
597
635
|
|
636
|
+
##
|
637
|
+
# Baseline implementation for the get_instance_partition REST call
|
638
|
+
#
|
639
|
+
# @param request_pb [::Google::Cloud::Spanner::Admin::Instance::V1::GetInstancePartitionRequest]
|
640
|
+
# A request object representing the call parameters. Required.
|
641
|
+
# @param options [::Gapic::CallOptions]
|
642
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
643
|
+
#
|
644
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
645
|
+
# @yieldparam result [::Google::Cloud::Spanner::Admin::Instance::V1::InstancePartition]
|
646
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
647
|
+
#
|
648
|
+
# @return [::Google::Cloud::Spanner::Admin::Instance::V1::InstancePartition]
|
649
|
+
# A result object deserialized from the server's reply
|
650
|
+
def get_instance_partition request_pb, options = nil
|
651
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
652
|
+
|
653
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_get_instance_partition_request request_pb
|
654
|
+
query_string_params = if query_string_params.any?
|
655
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
656
|
+
else
|
657
|
+
{}
|
658
|
+
end
|
659
|
+
|
660
|
+
response = @client_stub.make_http_request(
|
661
|
+
verb,
|
662
|
+
uri: uri,
|
663
|
+
body: body || "",
|
664
|
+
params: query_string_params,
|
665
|
+
options: options
|
666
|
+
)
|
667
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
668
|
+
result = ::Google::Cloud::Spanner::Admin::Instance::V1::InstancePartition.decode_json response.body, ignore_unknown_fields: true
|
669
|
+
|
670
|
+
yield result, operation if block_given?
|
671
|
+
result
|
672
|
+
end
|
673
|
+
|
674
|
+
##
|
675
|
+
# Baseline implementation for the create_instance_partition REST call
|
676
|
+
#
|
677
|
+
# @param request_pb [::Google::Cloud::Spanner::Admin::Instance::V1::CreateInstancePartitionRequest]
|
678
|
+
# A request object representing the call parameters. Required.
|
679
|
+
# @param options [::Gapic::CallOptions]
|
680
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
681
|
+
#
|
682
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
683
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
684
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
685
|
+
#
|
686
|
+
# @return [::Google::Longrunning::Operation]
|
687
|
+
# A result object deserialized from the server's reply
|
688
|
+
def create_instance_partition request_pb, options = nil
|
689
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
690
|
+
|
691
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_create_instance_partition_request request_pb
|
692
|
+
query_string_params = if query_string_params.any?
|
693
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
694
|
+
else
|
695
|
+
{}
|
696
|
+
end
|
697
|
+
|
698
|
+
response = @client_stub.make_http_request(
|
699
|
+
verb,
|
700
|
+
uri: uri,
|
701
|
+
body: body || "",
|
702
|
+
params: query_string_params,
|
703
|
+
options: options
|
704
|
+
)
|
705
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
706
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
707
|
+
|
708
|
+
yield result, operation if block_given?
|
709
|
+
result
|
710
|
+
end
|
711
|
+
|
712
|
+
##
|
713
|
+
# Baseline implementation for the delete_instance_partition REST call
|
714
|
+
#
|
715
|
+
# @param request_pb [::Google::Cloud::Spanner::Admin::Instance::V1::DeleteInstancePartitionRequest]
|
716
|
+
# A request object representing the call parameters. Required.
|
717
|
+
# @param options [::Gapic::CallOptions]
|
718
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
719
|
+
#
|
720
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
721
|
+
# @yieldparam result [::Google::Protobuf::Empty]
|
722
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
723
|
+
#
|
724
|
+
# @return [::Google::Protobuf::Empty]
|
725
|
+
# A result object deserialized from the server's reply
|
726
|
+
def delete_instance_partition request_pb, options = nil
|
727
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
728
|
+
|
729
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_delete_instance_partition_request request_pb
|
730
|
+
query_string_params = if query_string_params.any?
|
731
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
732
|
+
else
|
733
|
+
{}
|
734
|
+
end
|
735
|
+
|
736
|
+
response = @client_stub.make_http_request(
|
737
|
+
verb,
|
738
|
+
uri: uri,
|
739
|
+
body: body || "",
|
740
|
+
params: query_string_params,
|
741
|
+
options: options
|
742
|
+
)
|
743
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
744
|
+
result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true
|
745
|
+
|
746
|
+
yield result, operation if block_given?
|
747
|
+
result
|
748
|
+
end
|
749
|
+
|
750
|
+
##
|
751
|
+
# Baseline implementation for the update_instance_partition REST call
|
752
|
+
#
|
753
|
+
# @param request_pb [::Google::Cloud::Spanner::Admin::Instance::V1::UpdateInstancePartitionRequest]
|
754
|
+
# A request object representing the call parameters. Required.
|
755
|
+
# @param options [::Gapic::CallOptions]
|
756
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
757
|
+
#
|
758
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
759
|
+
# @yieldparam result [::Google::Longrunning::Operation]
|
760
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
761
|
+
#
|
762
|
+
# @return [::Google::Longrunning::Operation]
|
763
|
+
# A result object deserialized from the server's reply
|
764
|
+
def update_instance_partition request_pb, options = nil
|
765
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
766
|
+
|
767
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_update_instance_partition_request request_pb
|
768
|
+
query_string_params = if query_string_params.any?
|
769
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
770
|
+
else
|
771
|
+
{}
|
772
|
+
end
|
773
|
+
|
774
|
+
response = @client_stub.make_http_request(
|
775
|
+
verb,
|
776
|
+
uri: uri,
|
777
|
+
body: body || "",
|
778
|
+
params: query_string_params,
|
779
|
+
options: options
|
780
|
+
)
|
781
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
782
|
+
result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
|
783
|
+
|
784
|
+
yield result, operation if block_given?
|
785
|
+
result
|
786
|
+
end
|
787
|
+
|
788
|
+
##
|
789
|
+
# Baseline implementation for the list_instance_partition_operations REST call
|
790
|
+
#
|
791
|
+
# @param request_pb [::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionOperationsRequest]
|
792
|
+
# A request object representing the call parameters. Required.
|
793
|
+
# @param options [::Gapic::CallOptions]
|
794
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
795
|
+
#
|
796
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
797
|
+
# @yieldparam result [::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionOperationsResponse]
|
798
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
799
|
+
#
|
800
|
+
# @return [::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionOperationsResponse]
|
801
|
+
# A result object deserialized from the server's reply
|
802
|
+
def list_instance_partition_operations request_pb, options = nil
|
803
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
804
|
+
|
805
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_list_instance_partition_operations_request request_pb
|
806
|
+
query_string_params = if query_string_params.any?
|
807
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
808
|
+
else
|
809
|
+
{}
|
810
|
+
end
|
811
|
+
|
812
|
+
response = @client_stub.make_http_request(
|
813
|
+
verb,
|
814
|
+
uri: uri,
|
815
|
+
body: body || "",
|
816
|
+
params: query_string_params,
|
817
|
+
options: options
|
818
|
+
)
|
819
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
820
|
+
result = ::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionOperationsResponse.decode_json response.body, ignore_unknown_fields: true
|
821
|
+
|
822
|
+
yield result, operation if block_given?
|
823
|
+
result
|
824
|
+
end
|
825
|
+
|
598
826
|
##
|
599
827
|
# @private
|
600
828
|
#
|
@@ -744,6 +972,27 @@ module Google
|
|
744
972
|
transcoder.transcode request_pb
|
745
973
|
end
|
746
974
|
|
975
|
+
##
|
976
|
+
# @private
|
977
|
+
#
|
978
|
+
# GRPC transcoding helper method for the list_instance_partitions REST call
|
979
|
+
#
|
980
|
+
# @param request_pb [::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionsRequest]
|
981
|
+
# A request object representing the call parameters. Required.
|
982
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
983
|
+
# Uri, Body, Query string parameters
|
984
|
+
def self.transcode_list_instance_partitions_request request_pb
|
985
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
986
|
+
.with_bindings(
|
987
|
+
uri_method: :get,
|
988
|
+
uri_template: "/v1/{parent}/instancePartitions",
|
989
|
+
matches: [
|
990
|
+
["parent", %r{^projects/[^/]+/instances/[^/]+/?$}, false]
|
991
|
+
]
|
992
|
+
)
|
993
|
+
transcoder.transcode request_pb
|
994
|
+
end
|
995
|
+
|
747
996
|
##
|
748
997
|
# @private
|
749
998
|
#
|
@@ -895,6 +1144,113 @@ module Google
|
|
895
1144
|
)
|
896
1145
|
transcoder.transcode request_pb
|
897
1146
|
end
|
1147
|
+
|
1148
|
+
##
|
1149
|
+
# @private
|
1150
|
+
#
|
1151
|
+
# GRPC transcoding helper method for the get_instance_partition REST call
|
1152
|
+
#
|
1153
|
+
# @param request_pb [::Google::Cloud::Spanner::Admin::Instance::V1::GetInstancePartitionRequest]
|
1154
|
+
# A request object representing the call parameters. Required.
|
1155
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
1156
|
+
# Uri, Body, Query string parameters
|
1157
|
+
def self.transcode_get_instance_partition_request request_pb
|
1158
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
1159
|
+
.with_bindings(
|
1160
|
+
uri_method: :get,
|
1161
|
+
uri_template: "/v1/{name}",
|
1162
|
+
matches: [
|
1163
|
+
["name", %r{^projects/[^/]+/instances/[^/]+/instancePartitions/[^/]+/?$}, false]
|
1164
|
+
]
|
1165
|
+
)
|
1166
|
+
transcoder.transcode request_pb
|
1167
|
+
end
|
1168
|
+
|
1169
|
+
##
|
1170
|
+
# @private
|
1171
|
+
#
|
1172
|
+
# GRPC transcoding helper method for the create_instance_partition REST call
|
1173
|
+
#
|
1174
|
+
# @param request_pb [::Google::Cloud::Spanner::Admin::Instance::V1::CreateInstancePartitionRequest]
|
1175
|
+
# A request object representing the call parameters. Required.
|
1176
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
1177
|
+
# Uri, Body, Query string parameters
|
1178
|
+
def self.transcode_create_instance_partition_request request_pb
|
1179
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
1180
|
+
.with_bindings(
|
1181
|
+
uri_method: :post,
|
1182
|
+
uri_template: "/v1/{parent}/instancePartitions",
|
1183
|
+
body: "*",
|
1184
|
+
matches: [
|
1185
|
+
["parent", %r{^projects/[^/]+/instances/[^/]+/?$}, false]
|
1186
|
+
]
|
1187
|
+
)
|
1188
|
+
transcoder.transcode request_pb
|
1189
|
+
end
|
1190
|
+
|
1191
|
+
##
|
1192
|
+
# @private
|
1193
|
+
#
|
1194
|
+
# GRPC transcoding helper method for the delete_instance_partition REST call
|
1195
|
+
#
|
1196
|
+
# @param request_pb [::Google::Cloud::Spanner::Admin::Instance::V1::DeleteInstancePartitionRequest]
|
1197
|
+
# A request object representing the call parameters. Required.
|
1198
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
1199
|
+
# Uri, Body, Query string parameters
|
1200
|
+
def self.transcode_delete_instance_partition_request request_pb
|
1201
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
1202
|
+
.with_bindings(
|
1203
|
+
uri_method: :delete,
|
1204
|
+
uri_template: "/v1/{name}",
|
1205
|
+
matches: [
|
1206
|
+
["name", %r{^projects/[^/]+/instances/[^/]+/instancePartitions/[^/]+/?$}, false]
|
1207
|
+
]
|
1208
|
+
)
|
1209
|
+
transcoder.transcode request_pb
|
1210
|
+
end
|
1211
|
+
|
1212
|
+
##
|
1213
|
+
# @private
|
1214
|
+
#
|
1215
|
+
# GRPC transcoding helper method for the update_instance_partition REST call
|
1216
|
+
#
|
1217
|
+
# @param request_pb [::Google::Cloud::Spanner::Admin::Instance::V1::UpdateInstancePartitionRequest]
|
1218
|
+
# A request object representing the call parameters. Required.
|
1219
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
1220
|
+
# Uri, Body, Query string parameters
|
1221
|
+
def self.transcode_update_instance_partition_request request_pb
|
1222
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
1223
|
+
.with_bindings(
|
1224
|
+
uri_method: :patch,
|
1225
|
+
uri_template: "/v1/{instance_partition.name}",
|
1226
|
+
body: "*",
|
1227
|
+
matches: [
|
1228
|
+
["instance_partition.name", %r{^projects/[^/]+/instances/[^/]+/instancePartitions/[^/]+/?$}, false]
|
1229
|
+
]
|
1230
|
+
)
|
1231
|
+
transcoder.transcode request_pb
|
1232
|
+
end
|
1233
|
+
|
1234
|
+
##
|
1235
|
+
# @private
|
1236
|
+
#
|
1237
|
+
# GRPC transcoding helper method for the list_instance_partition_operations REST call
|
1238
|
+
#
|
1239
|
+
# @param request_pb [::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionOperationsRequest]
|
1240
|
+
# A request object representing the call parameters. Required.
|
1241
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
1242
|
+
# Uri, Body, Query string parameters
|
1243
|
+
def self.transcode_list_instance_partition_operations_request request_pb
|
1244
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
1245
|
+
.with_bindings(
|
1246
|
+
uri_method: :get,
|
1247
|
+
uri_template: "/v1/{parent}/instancePartitionOperations",
|
1248
|
+
matches: [
|
1249
|
+
["parent", %r{^projects/[^/]+/instances/[^/]+/?$}, false]
|
1250
|
+
]
|
1251
|
+
)
|
1252
|
+
transcoder.transcode request_pb
|
1253
|
+
end
|
898
1254
|
end
|
899
1255
|
end
|
900
1256
|
end
|
@@ -17,7 +17,7 @@ require 'google/protobuf/timestamp_pb'
|
|
17
17
|
require 'google/spanner/admin/instance/v1/common_pb'
|
18
18
|
|
19
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\"\xc2\x06\n\x0eInstanceConfig\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t\x12P\n\x0b\x63onfig_type\x18\x05 \x01(\x0e\x32\x35.google.spanner.admin.instance.v1.InstanceConfig.TypeB\x04\xe2\x41\x01\x03\x12?\n\x08replicas\x18\x03 \x03(\x0b\x32-.google.spanner.admin.instance.v1.ReplicaInfo\x12N\n\x11optional_replicas\x18\x06 \x03(\x0b\x32-.google.spanner.admin.instance.v1.ReplicaInfoB\x04\xe2\x41\x01\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\x19\n\x0breconciling\x18\n \x01(\x08\x42\x04\xe2\x41\x01\x03\x12K\n\x05state\x18\x0b \x01(\x0e\x32\x36.google.spanner.admin.instance.v1.InstanceConfig.StateB\x04\xe2\x41\x01\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}\"\xf7\x03\n\x11\x41utoscalingConfig\x12g\n\x12\x61utoscaling_limits\x18\x01 \x01(\x0b\x32\x45.google.spanner.admin.instance.v1.AutoscalingConfig.AutoscalingLimitsB\x04\xe2\x41\x01\x02\x12i\n\x13\x61utoscaling_targets\x18\x02 \x01(\x0b\x32\x46.google.spanner.admin.instance.v1.AutoscalingConfig.AutoscalingTargetsB\x04\xe2\x41\x01\x02\x1a\x97\x01\n\x11\x41utoscalingLimits\x12\x13\n\tmin_nodes\x18\x01 \x01(\x05H\x00\x12\x1e\n\x14min_processing_units\x18\x02 \x01(\x05H\x00\x12\x13\n\tmax_nodes\x18\x03 \x01(\x05H\x01\x12\x1e\n\x14max_processing_units\x18\x04 \x01(\x05H\x01\x42\x0b\n\tmin_limitB\x0b\n\tmax_limit\x1at\n\x12\x41utoscalingTargets\x12\x33\n%high_priority_cpu_utilization_percent\x18\x01 \x01(\x05\x42\x04\xe2\x41\x01\x02\x12)\n\x1bstorage_utilization_percent\x18\x02 \x01(\x05\x42\x04\xe2\x41\x01\x02\"\xca\x05\n\x08Instance\x12\x12\n\x04name\x18\x01 \x01(\tB\x04\xe2\x41\x01\x02\x12>\n\x06\x63onfig\x18\x02 \x01(\tB.\xe2\x41\x01\x02\xfa\x41\'\n%spanner.googleapis.com/InstanceConfig\x12\x1a\n\x0c\x64isplay_name\x18\x03 \x01(\tB\x04\xe2\x41\x01\x02\x12\x12\n\nnode_count\x18\x05 \x01(\x05\x12\x18\n\x10processing_units\x18\t \x01(\x05\x12U\n\x12\x61utoscaling_config\x18\x11 \x01(\x0b\x32\x33.google.spanner.admin.instance.v1.AutoscalingConfigB\x04\xe2\x41\x01\x01\x12\x45\n\x05state\x18\x06 \x01(\x0e\x32\x30.google.spanner.admin.instance.v1.Instance.StateB\x04\xe2\x41\x01\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\x35\n\x0b\x63reate_time\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x04\xe2\x41\x01\x03\x12\x35\n\x0bupdate_time\x18\x0c \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x04\xe2\x41\x01\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}\"\x89\x01\n\x1aListInstanceConfigsRequest\x12\x44\n\x06parent\x18\x01 \x01(\tB4\xe2\x41\x01\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\"X\n\x18GetInstanceConfigRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe2\x41\x01\x02\xfa\x41\'\n%spanner.googleapis.com/InstanceConfig\"\xed\x01\n\x1b\x43reateInstanceConfigRequest\x12\x44\n\x06parent\x18\x01 \x01(\tB4\xe2\x41\x01\x02\xfa\x41-\n+cloudresourcemanager.googleapis.com/Project\x12 \n\x12instance_config_id\x18\x02 \x01(\tB\x04\xe2\x41\x01\x02\x12O\n\x0finstance_config\x18\x03 \x01(\x0b\x32\x30.google.spanner.admin.instance.v1.InstanceConfigB\x04\xe2\x41\x01\x02\x12\x15\n\rvalidate_only\x18\x04 \x01(\x08\"\xbc\x01\n\x1bUpdateInstanceConfigRequest\x12O\n\x0finstance_config\x18\x01 \x01(\x0b\x32\x30.google.spanner.admin.instance.v1.InstanceConfigB\x04\xe2\x41\x01\x02\x12\x35\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x04\xe2\x41\x01\x02\x12\x15\n\rvalidate_only\x18\x03 \x01(\x08\"\x80\x01\n\x1b\x44\x65leteInstanceConfigRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe2\x41\x01\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\"\xa2\x01\n#ListInstanceConfigOperationsRequest\x12\x44\n\x06parent\x18\x01 \x01(\tB4\xe2\x41\x01\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\x36\n\x04name\x18\x01 \x01(\tB(\xe2\x41\x01\x02\xfa\x41!\n\x1fspanner.googleapis.com/Instance\x12.\n\nfield_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"\xbc\x01\n\x15\x43reateInstanceRequest\x12\x44\n\x06parent\x18\x01 \x01(\tB4\xe2\x41\x01\x02\xfa\x41-\n+cloudresourcemanager.googleapis.com/Project\x12\x19\n\x0binstance_id\x18\x02 \x01(\tB\x04\xe2\x41\x01\x02\x12\x42\n\x08instance\x18\x03 \x01(\x0b\x32*.google.spanner.admin.instance.v1.InstanceB\x04\xe2\x41\x01\x02\"\x93\x01\n\x14ListInstancesRequest\x12\x44\n\x06parent\x18\x01 \x01(\tB4\xe2\x41\x01\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\"\x91\x01\n\x15UpdateInstanceRequest\x12\x42\n\x08instance\x18\x01 \x01(\x0b\x32*.google.spanner.admin.instance.v1.InstanceB\x04\xe2\x41\x01\x02\x12\x34\n\nfield_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x04\xe2\x41\x01\x02\"O\n\x15\x44\x65leteInstanceRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe2\x41\x01\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\xda\x41\x06parent\x82\xd3\xe4\x93\x02)\x12\'/v1/{parent=projects/*}/instanceConfigs\x12\xb9\x01\n\x11GetInstanceConfig\x12:.google.spanner.admin.instance.v1.GetInstanceConfigRequest\x1a\x30.google.spanner.admin.instance.v1.InstanceConfig\"6\xda\x41\x04name\x82\xd3\xe4\x93\x02)\x12\'/v1/{name=projects/*/instanceConfigs/*}\x12\xc8\x02\n\x14\x43reateInstanceConfig\x12=.google.spanner.admin.instance.v1.CreateInstanceConfigRequest\x1a\x1d.google.longrunning.Operation\"\xd1\x01\xca\x41p\n/google.spanner.admin.instance.v1.InstanceConfig\x12=google.spanner.admin.instance.v1.CreateInstanceConfigMetadata\xda\x41)parent,instance_config,instance_config_id\x82\xd3\xe4\x93\x02,\"\'/v1/{parent=projects/*}/instanceConfigs:\x01*\x12\xca\x02\n\x14UpdateInstanceConfig\x12=.google.spanner.admin.instance.v1.UpdateInstanceConfigRequest\x1a\x1d.google.longrunning.Operation\"\xd3\x01\xca\x41p\n/google.spanner.admin.instance.v1.InstanceConfig\x12=google.spanner.admin.instance.v1.UpdateInstanceConfigMetadata\xda\x41\x1binstance_config,update_mask\x82\xd3\xe4\x93\x02<27/v1/{instance_config.name=projects/*/instanceConfigs/*}:\x01*\x12\xa5\x01\n\x14\x44\x65leteInstanceConfig\x12=.google.spanner.admin.instance.v1.DeleteInstanceConfigRequest\x1a\x16.google.protobuf.Empty\"6\xda\x41\x04name\x82\xd3\xe4\x93\x02)*\'/v1/{name=projects/*/instanceConfigs/*}\x12\xf0\x01\n\x1cListInstanceConfigOperations\x12\x45.google.spanner.admin.instance.v1.ListInstanceConfigOperationsRequest\x1a\x46.google.spanner.admin.instance.v1.ListInstanceConfigOperationsResponse\"A\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{parent=projects/*}/instanceConfigOperations\x12\xb4\x01\n\rListInstances\x12\x36.google.spanner.admin.instance.v1.ListInstancesRequest\x1a\x37.google.spanner.admin.instance.v1.ListInstancesResponse\"2\xda\x41\x06parent\x82\xd3\xe4\x93\x02#\x12!/v1/{parent=projects/*}/instances\x12\xa1\x01\n\x0bGetInstance\x12\x34.google.spanner.admin.instance.v1.GetInstanceRequest\x1a*.google.spanner.admin.instance.v1.Instance\"0\xda\x41\x04name\x82\xd3\xe4\x93\x02#\x12!/v1/{name=projects/*/instances/*}\x12\x9c\x02\n\x0e\x43reateInstance\x12\x37.google.spanner.admin.instance.v1.CreateInstanceRequest\x1a\x1d.google.longrunning.Operation\"\xb1\x01\xca\x41\x64\n)google.spanner.admin.instance.v1.Instance\x12\x37google.spanner.admin.instance.v1.CreateInstanceMetadata\xda\x41\x1bparent,instance_id,instance\x82\xd3\xe4\x93\x02&\"!/v1/{parent=projects/*}/instances:\x01*\x12\x9d\x02\n\x0eUpdateInstance\x12\x37.google.spanner.admin.instance.v1.UpdateInstanceRequest\x1a\x1d.google.longrunning.Operation\"\xb2\x01\xca\x41\x64\n)google.spanner.admin.instance.v1.Instance\x12\x37google.spanner.admin.instance.v1.UpdateInstanceMetadata\xda\x41\x13instance,field_mask\x82\xd3\xe4\x93\x02/2*/v1/{instance.name=projects/*/instances/*}:\x01*\x12\x93\x01\n\x0e\x44\x65leteInstance\x12\x37.google.spanner.admin.instance.v1.DeleteInstanceRequest\x1a\x16.google.protobuf.Empty\"0\xda\x41\x04name\x82\xd3\xe4\x93\x02#*!/v1/{name=projects/*/instances/*}\x12\x9a\x01\n\x0cSetIamPolicy\x12\".google.iam.v1.SetIamPolicyRequest\x1a\x15.google.iam.v1.Policy\"O\xda\x41\x0fresource,policy\x82\xd3\xe4\x93\x02\x37\"2/v1/{resource=projects/*/instances/*}:setIamPolicy:\x01*\x12\x93\x01\n\x0cGetIamPolicy\x12\".google.iam.v1.GetIamPolicyRequest\x1a\x15.google.iam.v1.Policy\"H\xda\x41\x08resource\x82\xd3\xe4\x93\x02\x37\"2/v1/{resource=projects/*/instances/*}:getIamPolicy:\x01*\x12\xc5\x01\n\x12TestIamPermissions\x12(.google.iam.v1.TestIamPermissionsRequest\x1a).google.iam.v1.TestIamPermissionsResponse\"Z\xda\x41\x14resource,permissions\x82\xd3\xe4\x93\x02=\"8/v1/{resource=projects/*/instances/*}:testIamPermissions:\x01*\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"
|
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}\"\xf3\x03\n\x11\x41utoscalingConfig\x12\x66\n\x12\x61utoscaling_limits\x18\x01 \x01(\x0b\x32\x45.google.spanner.admin.instance.v1.AutoscalingConfig.AutoscalingLimitsB\x03\xe0\x41\x02\x12h\n\x13\x61utoscaling_targets\x18\x02 \x01(\x0b\x32\x46.google.spanner.admin.instance.v1.AutoscalingConfig.AutoscalingTargetsB\x03\xe0\x41\x02\x1a\x97\x01\n\x11\x41utoscalingLimits\x12\x13\n\tmin_nodes\x18\x01 \x01(\x05H\x00\x12\x1e\n\x14min_processing_units\x18\x02 \x01(\x05H\x00\x12\x13\n\tmax_nodes\x18\x03 \x01(\x05H\x01\x12\x1e\n\x14max_processing_units\x18\x04 \x01(\x05H\x01\x42\x0b\n\tmin_limitB\x0b\n\tmax_limit\x1ar\n\x12\x41utoscalingTargets\x12\x32\n%high_priority_cpu_utilization_percent\x18\x01 \x01(\x05\x42\x03\xe0\x41\x02\x12(\n\x1bstorage_utilization_percent\x18\x02 \x01(\x05\x42\x03\xe0\x41\x02\"\xc3\x05\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\x12T\n\x12\x61utoscaling_config\x18\x11 \x01(\x0b\x32\x33.google.spanner.admin.instance.v1.AutoscalingConfigB\x03\xe0\x41\x01\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\"\xc9\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\x12\x35\n\x11instance_deadline\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\x84\x01\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\x12\x13\n\x0bunreachable\x18\x03 \x03(\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.Timestamp\"\x8e\x05\n\x11InstancePartition\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\x14\n\nnode_count\x18\x05 \x01(\x05H\x00\x12\x1a\n\x10processing_units\x18\x06 \x01(\x05H\x00\x12M\n\x05state\x18\x07 \x01(\x0e\x32\x39.google.spanner.admin.instance.v1.InstancePartition.StateB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\"\n\x15referencing_databases\x18\n \x03(\tB\x03\xe0\x41\x03\x12 \n\x13referencing_backups\x18\x0b \x03(\tB\x03\xe0\x41\x03\x12\x0c\n\x04\x65tag\x18\x0c \x01(\t\"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/InstancePartition\x12Oprojects/{project}/instances/{instance}/instancePartitions/{instance_partition}B\x12\n\x10\x63ompute_capacity\"\x81\x02\n\x1f\x43reateInstancePartitionMetadata\x12O\n\x12instance_partition\x18\x01 \x01(\x0b\x32\x33.google.spanner.admin.instance.v1.InstancePartition\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\"\xd3\x01\n\x1e\x43reateInstancePartitionRequest\x12\x37\n\x06parent\x18\x01 \x01(\tB\'\xe0\x41\x02\xfa\x41!\n\x1fspanner.googleapis.com/Instance\x12\"\n\x15instance_partition_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12T\n\x12instance_partition\x18\x03 \x01(\x0b\x32\x33.google.spanner.admin.instance.v1.InstancePartitionB\x03\xe0\x41\x02\"n\n\x1e\x44\x65leteInstancePartitionRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(spanner.googleapis.com/InstancePartition\x12\x0c\n\x04\x65tag\x18\x02 \x01(\t\"]\n\x1bGetInstancePartitionRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(spanner.googleapis.com/InstancePartition\"\xab\x01\n\x1eUpdateInstancePartitionRequest\x12T\n\x12instance_partition\x18\x01 \x01(\x0b\x32\x33.google.spanner.admin.instance.v1.InstancePartitionB\x03\xe0\x41\x02\x12\x33\n\nfield_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\"\x81\x02\n\x1fUpdateInstancePartitionMetadata\x12O\n\x12instance_partition\x18\x01 \x01(\x0b\x32\x33.google.spanner.admin.instance.v1.InstancePartition\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\"\xc5\x01\n\x1dListInstancePartitionsRequest\x12\x37\n\x06parent\x18\x01 \x01(\tB\'\xe0\x41\x02\xfa\x41!\n\x1fspanner.googleapis.com/Instance\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x44\n\x1binstance_partition_deadline\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x01\"\xa0\x01\n\x1eListInstancePartitionsResponse\x12P\n\x13instance_partitions\x18\x01 \x03(\x0b\x32\x33.google.spanner.admin.instance.v1.InstancePartition\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\xed\x01\n&ListInstancePartitionOperationsRequest\x12\x37\n\x06parent\x18\x01 \x01(\tB\'\xe0\x41\x02\xfa\x41!\n\x1fspanner.googleapis.com/Instance\x12\x13\n\x06\x66ilter\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x16\n\tpage_size\x18\x03 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x44\n\x1binstance_partition_deadline\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x01\"\x9e\x01\n\'ListInstancePartitionOperationsResponse\x12\x31\n\noperations\x18\x01 \x03(\x0b\x32\x1d.google.longrunning.Operation\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\'\n\x1funreachable_instance_partitions\x18\x03 \x03(\t2\xce%\n\rInstanceAdmin\x12\xcc\x01\n\x13ListInstanceConfigs\x12<.google.spanner.admin.instance.v1.ListInstanceConfigsRequest\x1a=.google.spanner.admin.instance.v1.ListInstanceConfigsResponse\"8\xda\x41\x06parent\x82\xd3\xe4\x93\x02)\x12\'/v1/{parent=projects/*}/instanceConfigs\x12\xb9\x01\n\x11GetInstanceConfig\x12:.google.spanner.admin.instance.v1.GetInstanceConfigRequest\x1a\x30.google.spanner.admin.instance.v1.InstanceConfig\"6\xda\x41\x04name\x82\xd3\xe4\x93\x02)\x12\'/v1/{name=projects/*/instanceConfigs/*}\x12\xc8\x02\n\x14\x43reateInstanceConfig\x12=.google.spanner.admin.instance.v1.CreateInstanceConfigRequest\x1a\x1d.google.longrunning.Operation\"\xd1\x01\xca\x41p\n/google.spanner.admin.instance.v1.InstanceConfig\x12=google.spanner.admin.instance.v1.CreateInstanceConfigMetadata\xda\x41)parent,instance_config,instance_config_id\x82\xd3\xe4\x93\x02,\"\'/v1/{parent=projects/*}/instanceConfigs:\x01*\x12\xca\x02\n\x14UpdateInstanceConfig\x12=.google.spanner.admin.instance.v1.UpdateInstanceConfigRequest\x1a\x1d.google.longrunning.Operation\"\xd3\x01\xca\x41p\n/google.spanner.admin.instance.v1.InstanceConfig\x12=google.spanner.admin.instance.v1.UpdateInstanceConfigMetadata\xda\x41\x1binstance_config,update_mask\x82\xd3\xe4\x93\x02<27/v1/{instance_config.name=projects/*/instanceConfigs/*}:\x01*\x12\xa5\x01\n\x14\x44\x65leteInstanceConfig\x12=.google.spanner.admin.instance.v1.DeleteInstanceConfigRequest\x1a\x16.google.protobuf.Empty\"6\xda\x41\x04name\x82\xd3\xe4\x93\x02)*\'/v1/{name=projects/*/instanceConfigs/*}\x12\xf0\x01\n\x1cListInstanceConfigOperations\x12\x45.google.spanner.admin.instance.v1.ListInstanceConfigOperationsRequest\x1a\x46.google.spanner.admin.instance.v1.ListInstanceConfigOperationsResponse\"A\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{parent=projects/*}/instanceConfigOperations\x12\xb4\x01\n\rListInstances\x12\x36.google.spanner.admin.instance.v1.ListInstancesRequest\x1a\x37.google.spanner.admin.instance.v1.ListInstancesResponse\"2\xda\x41\x06parent\x82\xd3\xe4\x93\x02#\x12!/v1/{parent=projects/*}/instances\x12\xe4\x01\n\x16ListInstancePartitions\x12?.google.spanner.admin.instance.v1.ListInstancePartitionsRequest\x1a@.google.spanner.admin.instance.v1.ListInstancePartitionsResponse\"G\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x38\x12\x36/v1/{parent=projects/*/instances/*}/instancePartitions\x12\xa1\x01\n\x0bGetInstance\x12\x34.google.spanner.admin.instance.v1.GetInstanceRequest\x1a*.google.spanner.admin.instance.v1.Instance\"0\xda\x41\x04name\x82\xd3\xe4\x93\x02#\x12!/v1/{name=projects/*/instances/*}\x12\x9c\x02\n\x0e\x43reateInstance\x12\x37.google.spanner.admin.instance.v1.CreateInstanceRequest\x1a\x1d.google.longrunning.Operation\"\xb1\x01\xca\x41\x64\n)google.spanner.admin.instance.v1.Instance\x12\x37google.spanner.admin.instance.v1.CreateInstanceMetadata\xda\x41\x1bparent,instance_id,instance\x82\xd3\xe4\x93\x02&\"!/v1/{parent=projects/*}/instances:\x01*\x12\x9d\x02\n\x0eUpdateInstance\x12\x37.google.spanner.admin.instance.v1.UpdateInstanceRequest\x1a\x1d.google.longrunning.Operation\"\xb2\x01\xca\x41\x64\n)google.spanner.admin.instance.v1.Instance\x12\x37google.spanner.admin.instance.v1.UpdateInstanceMetadata\xda\x41\x13instance,field_mask\x82\xd3\xe4\x93\x02/2*/v1/{instance.name=projects/*/instances/*}:\x01*\x12\x93\x01\n\x0e\x44\x65leteInstance\x12\x37.google.spanner.admin.instance.v1.DeleteInstanceRequest\x1a\x16.google.protobuf.Empty\"0\xda\x41\x04name\x82\xd3\xe4\x93\x02#*!/v1/{name=projects/*/instances/*}\x12\x9a\x01\n\x0cSetIamPolicy\x12\".google.iam.v1.SetIamPolicyRequest\x1a\x15.google.iam.v1.Policy\"O\xda\x41\x0fresource,policy\x82\xd3\xe4\x93\x02\x37\"2/v1/{resource=projects/*/instances/*}:setIamPolicy:\x01*\x12\x93\x01\n\x0cGetIamPolicy\x12\".google.iam.v1.GetIamPolicyRequest\x1a\x15.google.iam.v1.Policy\"H\xda\x41\x08resource\x82\xd3\xe4\x93\x02\x37\"2/v1/{resource=projects/*/instances/*}:getIamPolicy:\x01*\x12\xc5\x01\n\x12TestIamPermissions\x12(.google.iam.v1.TestIamPermissionsRequest\x1a).google.iam.v1.TestIamPermissionsResponse\"Z\xda\x41\x14resource,permissions\x82\xd3\xe4\x93\x02=\"8/v1/{resource=projects/*/instances/*}:testIamPermissions:\x01*\x12\xd1\x01\n\x14GetInstancePartition\x12=.google.spanner.admin.instance.v1.GetInstancePartitionRequest\x1a\x33.google.spanner.admin.instance.v1.InstancePartition\"E\xda\x41\x04name\x82\xd3\xe4\x93\x02\x38\x12\x36/v1/{name=projects/*/instances/*/instancePartitions/*}\x12\xe9\x02\n\x17\x43reateInstancePartition\x12@.google.spanner.admin.instance.v1.CreateInstancePartitionRequest\x1a\x1d.google.longrunning.Operation\"\xec\x01\xca\x41v\n2google.spanner.admin.instance.v1.InstancePartition\x12@google.spanner.admin.instance.v1.CreateInstancePartitionMetadata\xda\x41/parent,instance_partition,instance_partition_id\x82\xd3\xe4\x93\x02;\"6/v1/{parent=projects/*/instances/*}/instancePartitions:\x01*\x12\xba\x01\n\x17\x44\x65leteInstancePartition\x12@.google.spanner.admin.instance.v1.DeleteInstancePartitionRequest\x1a\x16.google.protobuf.Empty\"E\xda\x41\x04name\x82\xd3\xe4\x93\x02\x38*6/v1/{name=projects/*/instances/*/instancePartitions/*}\x12\xea\x02\n\x17UpdateInstancePartition\x12@.google.spanner.admin.instance.v1.UpdateInstancePartitionRequest\x1a\x1d.google.longrunning.Operation\"\xed\x01\xca\x41v\n2google.spanner.admin.instance.v1.InstancePartition\x12@google.spanner.admin.instance.v1.UpdateInstancePartitionMetadata\xda\x41\x1dinstance_partition,field_mask\x82\xd3\xe4\x93\x02N2I/v1/{instance_partition.name=projects/*/instances/*/instancePartitions/*}:\x01*\x12\x88\x02\n\x1fListInstancePartitionOperations\x12H.google.spanner.admin.instance.v1.ListInstancePartitionOperationsRequest\x1aI.google.spanner.admin.instance.v1.ListInstancePartitionOperationsResponse\"P\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x41\x12?/v1/{parent=projects/*/instances/*}/instancePartitionOperations\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
21
|
|
22
22
|
pool = Google::Protobuf::DescriptorPool.generated_pool
|
23
23
|
|
@@ -81,6 +81,18 @@ module Google
|
|
81
81
|
UpdateInstanceMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.spanner.admin.instance.v1.UpdateInstanceMetadata").msgclass
|
82
82
|
CreateInstanceConfigMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.spanner.admin.instance.v1.CreateInstanceConfigMetadata").msgclass
|
83
83
|
UpdateInstanceConfigMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.spanner.admin.instance.v1.UpdateInstanceConfigMetadata").msgclass
|
84
|
+
InstancePartition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.spanner.admin.instance.v1.InstancePartition").msgclass
|
85
|
+
InstancePartition::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.spanner.admin.instance.v1.InstancePartition.State").enummodule
|
86
|
+
CreateInstancePartitionMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.spanner.admin.instance.v1.CreateInstancePartitionMetadata").msgclass
|
87
|
+
CreateInstancePartitionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.spanner.admin.instance.v1.CreateInstancePartitionRequest").msgclass
|
88
|
+
DeleteInstancePartitionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.spanner.admin.instance.v1.DeleteInstancePartitionRequest").msgclass
|
89
|
+
GetInstancePartitionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.spanner.admin.instance.v1.GetInstancePartitionRequest").msgclass
|
90
|
+
UpdateInstancePartitionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.spanner.admin.instance.v1.UpdateInstancePartitionRequest").msgclass
|
91
|
+
UpdateInstancePartitionMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.spanner.admin.instance.v1.UpdateInstancePartitionMetadata").msgclass
|
92
|
+
ListInstancePartitionsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.spanner.admin.instance.v1.ListInstancePartitionsRequest").msgclass
|
93
|
+
ListInstancePartitionsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.spanner.admin.instance.v1.ListInstancePartitionsResponse").msgclass
|
94
|
+
ListInstancePartitionOperationsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.spanner.admin.instance.v1.ListInstancePartitionOperationsRequest").msgclass
|
95
|
+
ListInstancePartitionOperationsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.spanner.admin.instance.v1.ListInstancePartitionOperationsResponse").msgclass
|
84
96
|
end
|
85
97
|
end
|
86
98
|
end
|
@@ -169,6 +169,8 @@ module Google
|
|
169
169
|
rpc :ListInstanceConfigOperations, ::Google::Cloud::Spanner::Admin::Instance::V1::ListInstanceConfigOperationsRequest, ::Google::Cloud::Spanner::Admin::Instance::V1::ListInstanceConfigOperationsResponse
|
170
170
|
# Lists all instances in the given project.
|
171
171
|
rpc :ListInstances, ::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancesRequest, ::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancesResponse
|
172
|
+
# Lists all instance partitions for the given instance.
|
173
|
+
rpc :ListInstancePartitions, ::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionsRequest, ::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionsResponse
|
172
174
|
# Gets information about a particular instance.
|
173
175
|
rpc :GetInstance, ::Google::Cloud::Spanner::Admin::Instance::V1::GetInstanceRequest, ::Google::Cloud::Spanner::Admin::Instance::V1::Instance
|
174
176
|
# Creates an instance and begins preparing it to begin serving. The
|
@@ -278,6 +280,115 @@ module Google
|
|
278
280
|
# permission on the containing Google Cloud Project. Otherwise returns an
|
279
281
|
# empty set of permissions.
|
280
282
|
rpc :TestIamPermissions, ::Google::Iam::V1::TestIamPermissionsRequest, ::Google::Iam::V1::TestIamPermissionsResponse
|
283
|
+
# Gets information about a particular instance partition.
|
284
|
+
rpc :GetInstancePartition, ::Google::Cloud::Spanner::Admin::Instance::V1::GetInstancePartitionRequest, ::Google::Cloud::Spanner::Admin::Instance::V1::InstancePartition
|
285
|
+
# Creates an instance partition and begins preparing it to be used. The
|
286
|
+
# returned [long-running operation][google.longrunning.Operation]
|
287
|
+
# can be used to track the progress of preparing the new instance partition.
|
288
|
+
# The instance partition name is assigned by the caller. If the named
|
289
|
+
# instance partition already exists, `CreateInstancePartition` returns
|
290
|
+
# `ALREADY_EXISTS`.
|
291
|
+
#
|
292
|
+
# Immediately upon completion of this request:
|
293
|
+
#
|
294
|
+
# * The instance partition is readable via the API, with all requested
|
295
|
+
# attributes but no allocated resources. Its state is `CREATING`.
|
296
|
+
#
|
297
|
+
# Until completion of the returned operation:
|
298
|
+
#
|
299
|
+
# * Cancelling the operation renders the instance partition immediately
|
300
|
+
# unreadable via the API.
|
301
|
+
# * The instance partition can be deleted.
|
302
|
+
# * All other attempts to modify the instance partition are rejected.
|
303
|
+
#
|
304
|
+
# Upon completion of the returned operation:
|
305
|
+
#
|
306
|
+
# * Billing for all successfully-allocated resources begins (some types
|
307
|
+
# may have lower than the requested levels).
|
308
|
+
# * Databases can start using this instance partition.
|
309
|
+
# * The instance partition's allocated resource levels are readable via the
|
310
|
+
# API.
|
311
|
+
# * The instance partition's state becomes `READY`.
|
312
|
+
#
|
313
|
+
# The returned [long-running operation][google.longrunning.Operation] will
|
314
|
+
# have a name of the format
|
315
|
+
# `<instance_partition_name>/operations/<operation_id>` and can be used to
|
316
|
+
# track creation of the instance partition. The
|
317
|
+
# [metadata][google.longrunning.Operation.metadata] field type is
|
318
|
+
# [CreateInstancePartitionMetadata][google.spanner.admin.instance.v1.CreateInstancePartitionMetadata].
|
319
|
+
# The [response][google.longrunning.Operation.response] field type is
|
320
|
+
# [InstancePartition][google.spanner.admin.instance.v1.InstancePartition], if
|
321
|
+
# successful.
|
322
|
+
rpc :CreateInstancePartition, ::Google::Cloud::Spanner::Admin::Instance::V1::CreateInstancePartitionRequest, ::Google::Longrunning::Operation
|
323
|
+
# Deletes an existing instance partition. Requires that the
|
324
|
+
# instance partition is not used by any database or backup and is not the
|
325
|
+
# default instance partition of an instance.
|
326
|
+
#
|
327
|
+
# Authorization requires `spanner.instancePartitions.delete` permission on
|
328
|
+
# the resource
|
329
|
+
# [name][google.spanner.admin.instance.v1.InstancePartition.name].
|
330
|
+
rpc :DeleteInstancePartition, ::Google::Cloud::Spanner::Admin::Instance::V1::DeleteInstancePartitionRequest, ::Google::Protobuf::Empty
|
331
|
+
# Updates an instance partition, and begins allocating or releasing resources
|
332
|
+
# as requested. The returned [long-running
|
333
|
+
# operation][google.longrunning.Operation] can be used to track the
|
334
|
+
# progress of updating the instance partition. If the named instance
|
335
|
+
# partition does not exist, returns `NOT_FOUND`.
|
336
|
+
#
|
337
|
+
# Immediately upon completion of this request:
|
338
|
+
#
|
339
|
+
# * For resource types for which a decrease in the instance partition's
|
340
|
+
# allocation has been requested, billing is based on the newly-requested
|
341
|
+
# level.
|
342
|
+
#
|
343
|
+
# Until completion of the returned operation:
|
344
|
+
#
|
345
|
+
# * Cancelling the operation sets its metadata's
|
346
|
+
# [cancel_time][google.spanner.admin.instance.v1.UpdateInstancePartitionMetadata.cancel_time],
|
347
|
+
# and begins restoring resources to their pre-request values. The
|
348
|
+
# operation is guaranteed to succeed at undoing all resource changes,
|
349
|
+
# after which point it terminates with a `CANCELLED` status.
|
350
|
+
# * All other attempts to modify the instance partition are rejected.
|
351
|
+
# * Reading the instance partition via the API continues to give the
|
352
|
+
# pre-request resource levels.
|
353
|
+
#
|
354
|
+
# Upon completion of the returned operation:
|
355
|
+
#
|
356
|
+
# * Billing begins for all successfully-allocated resources (some types
|
357
|
+
# may have lower than the requested levels).
|
358
|
+
# * All newly-reserved resources are available for serving the instance
|
359
|
+
# partition's tables.
|
360
|
+
# * The instance partition's new resource levels are readable via the API.
|
361
|
+
#
|
362
|
+
# The returned [long-running operation][google.longrunning.Operation] will
|
363
|
+
# have a name of the format
|
364
|
+
# `<instance_partition_name>/operations/<operation_id>` and can be used to
|
365
|
+
# track the instance partition modification. The
|
366
|
+
# [metadata][google.longrunning.Operation.metadata] field type is
|
367
|
+
# [UpdateInstancePartitionMetadata][google.spanner.admin.instance.v1.UpdateInstancePartitionMetadata].
|
368
|
+
# The [response][google.longrunning.Operation.response] field type is
|
369
|
+
# [InstancePartition][google.spanner.admin.instance.v1.InstancePartition], if
|
370
|
+
# successful.
|
371
|
+
#
|
372
|
+
# Authorization requires `spanner.instancePartitions.update` permission on
|
373
|
+
# the resource
|
374
|
+
# [name][google.spanner.admin.instance.v1.InstancePartition.name].
|
375
|
+
rpc :UpdateInstancePartition, ::Google::Cloud::Spanner::Admin::Instance::V1::UpdateInstancePartitionRequest, ::Google::Longrunning::Operation
|
376
|
+
# Lists instance partition [long-running
|
377
|
+
# operations][google.longrunning.Operation] in the given instance.
|
378
|
+
# An instance partition operation has a name of the form
|
379
|
+
# `projects/<project>/instances/<instance>/instancePartitions/<instance_partition>/operations/<operation>`.
|
380
|
+
# The long-running operation
|
381
|
+
# [metadata][google.longrunning.Operation.metadata] field type
|
382
|
+
# `metadata.type_url` describes the type of the metadata. Operations returned
|
383
|
+
# include those that have completed/failed/canceled within the last 7 days,
|
384
|
+
# and pending operations. Operations returned are ordered by
|
385
|
+
# `operation.metadata.value.start_time` in descending order starting from the
|
386
|
+
# most recently started operation.
|
387
|
+
#
|
388
|
+
# Authorization requires `spanner.instancePartitionOperations.list`
|
389
|
+
# permission on the resource
|
390
|
+
# [parent][google.spanner.admin.instance.v1.ListInstancePartitionOperationsRequest.parent].
|
391
|
+
rpc :ListInstancePartitionOperations, ::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionOperationsRequest, ::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionOperationsResponse
|
281
392
|
end
|
282
393
|
|
283
394
|
Stub = Service.rpc_stub_class
|