google-cloud-spanner-admin-instance-v1 0.14.0 → 0.16.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -118,6 +118,10 @@ module Google
118
118
  # @return [::String]
119
119
  # Optional link to proto reference documentation. Example:
120
120
  # https://cloud.google.com/pubsub/lite/docs/reference/rpc
121
+ # @!attribute [rw] rest_reference_documentation_uri
122
+ # @return [::String]
123
+ # Optional link to REST reference documentation. Example:
124
+ # https://cloud.google.com/pubsub/lite/docs/reference/rest
121
125
  class Publishing
122
126
  include ::Google::Protobuf::MessageExts
123
127
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -40,6 +40,20 @@ module Google
40
40
  include ::Google::Protobuf::MessageExts
41
41
  extend ::Google::Protobuf::MessageExts::ClassMethods
42
42
  end
43
+
44
+ # Indicates the expected fulfillment period of an operation.
45
+ module FulfillmentPeriod
46
+ # Not specified.
47
+ FULFILLMENT_PERIOD_UNSPECIFIED = 0
48
+
49
+ # Normal fulfillment period. The operation is expected to complete within
50
+ # minutes.
51
+ FULFILLMENT_PERIOD_NORMAL = 1
52
+
53
+ # Extended fulfillment period. It can take up to an hour for the operation
54
+ # to complete.
55
+ FULFILLMENT_PERIOD_EXTENDED = 2
56
+ end
43
57
  end
44
58
  end
45
59
  end
@@ -651,6 +651,14 @@ module Google
651
651
  # * `name:howl labels.env:dev` --> The instance's name contains "howl" and
652
652
  # it has the label "env" with its value
653
653
  # containing "dev".
654
+ # @!attribute [rw] instance_deadline
655
+ # @return [::Google::Protobuf::Timestamp]
656
+ # Deadline used while retrieving metadata for instances.
657
+ # Instances whose metadata cannot be retrieved within this deadline will be
658
+ # added to
659
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancesResponse#unreachable unreachable}
660
+ # in
661
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancesResponse ListInstancesResponse}.
654
662
  class ListInstancesRequest
655
663
  include ::Google::Protobuf::MessageExts
656
664
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -666,6 +674,12 @@ module Google
666
674
  # `next_page_token` can be sent in a subsequent
667
675
  # {::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client#list_instances ListInstances}
668
676
  # call to fetch more of the matching instances.
677
+ # @!attribute [rw] unreachable
678
+ # @return [::Array<::String>]
679
+ # The list of unreachable instances.
680
+ # It includes the names of instances whose metadata could not be retrieved
681
+ # within
682
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancesRequest#instance_deadline instance_deadline}.
669
683
  class ListInstancesResponse
670
684
  include ::Google::Protobuf::MessageExts
671
685
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -720,6 +734,9 @@ module Google
720
734
  # @!attribute [rw] end_time
721
735
  # @return [::Google::Protobuf::Timestamp]
722
736
  # The time at which this operation failed or was completed successfully.
737
+ # @!attribute [rw] expected_fulfillment_period
738
+ # @return [::Google::Cloud::Spanner::Admin::Instance::V1::FulfillmentPeriod]
739
+ # The expected fulfillment period of this create operation.
723
740
  class CreateInstanceMetadata
724
741
  include ::Google::Protobuf::MessageExts
725
742
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -743,6 +760,9 @@ module Google
743
760
  # @!attribute [rw] end_time
744
761
  # @return [::Google::Protobuf::Timestamp]
745
762
  # The time at which this operation failed or was completed successfully.
763
+ # @!attribute [rw] expected_fulfillment_period
764
+ # @return [::Google::Cloud::Spanner::Admin::Instance::V1::FulfillmentPeriod]
765
+ # The expected fulfillment period of this update operation.
746
766
  class UpdateInstanceMetadata
747
767
  include ::Google::Protobuf::MessageExts
748
768
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -783,6 +803,366 @@ module Google
783
803
  include ::Google::Protobuf::MessageExts
784
804
  extend ::Google::Protobuf::MessageExts::ClassMethods
785
805
  end
806
+
807
+ # An isolated set of Cloud Spanner resources that databases can define
808
+ # placements on.
809
+ # @!attribute [rw] name
810
+ # @return [::String]
811
+ # Required. A unique identifier for the instance partition. Values are of the
812
+ # form
813
+ # `projects/<project>/instances/<instance>/instancePartitions/[a-z][-a-z0-9]*[a-z0-9]`.
814
+ # The final segment of the name must be between 2 and 64 characters in
815
+ # length. An instance partition's name cannot be changed after the instance
816
+ # partition is created.
817
+ # @!attribute [rw] config
818
+ # @return [::String]
819
+ # Required. The name of the instance partition's configuration. Values are of
820
+ # the form `projects/<project>/instanceConfigs/<configuration>`. See also
821
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::InstanceConfig InstanceConfig} and
822
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client#list_instance_configs ListInstanceConfigs}.
823
+ # @!attribute [rw] display_name
824
+ # @return [::String]
825
+ # Required. The descriptive name for this instance partition as it appears in
826
+ # UIs. Must be unique per project and between 4 and 30 characters in length.
827
+ # @!attribute [rw] node_count
828
+ # @return [::Integer]
829
+ # The number of nodes allocated to this instance partition.
830
+ #
831
+ # Users can set the node_count field to specify the target number of nodes
832
+ # allocated to the instance partition.
833
+ #
834
+ # This may be zero in API responses for instance partitions that are not
835
+ # yet in state `READY`.
836
+ # @!attribute [rw] processing_units
837
+ # @return [::Integer]
838
+ # The number of processing units allocated to this instance partition.
839
+ #
840
+ # Users can set the processing_units field to specify the target number of
841
+ # processing units allocated to the instance partition.
842
+ #
843
+ # This may be zero in API responses for instance partitions that are not
844
+ # yet in state `READY`.
845
+ # @!attribute [r] state
846
+ # @return [::Google::Cloud::Spanner::Admin::Instance::V1::InstancePartition::State]
847
+ # Output only. The current instance partition state.
848
+ # @!attribute [r] create_time
849
+ # @return [::Google::Protobuf::Timestamp]
850
+ # Output only. The time at which the instance partition was created.
851
+ # @!attribute [r] update_time
852
+ # @return [::Google::Protobuf::Timestamp]
853
+ # Output only. The time at which the instance partition was most recently
854
+ # updated.
855
+ # @!attribute [r] referencing_databases
856
+ # @return [::Array<::String>]
857
+ # Output only. The names of the databases that reference this
858
+ # instance partition. Referencing databases should share the parent instance.
859
+ # The existence of any referencing database prevents the instance partition
860
+ # from being deleted.
861
+ # @!attribute [r] referencing_backups
862
+ # @return [::Array<::String>]
863
+ # Output only. The names of the backups that reference this instance
864
+ # partition. Referencing backups should share the parent instance. The
865
+ # existence of any referencing backup prevents the instance partition from
866
+ # being deleted.
867
+ # @!attribute [rw] etag
868
+ # @return [::String]
869
+ # Used for optimistic concurrency control as a way
870
+ # to help prevent simultaneous updates of a instance partition from
871
+ # overwriting each other. It is strongly suggested that systems make use of
872
+ # the etag in the read-modify-write cycle to perform instance partition
873
+ # updates in order to avoid race conditions: An etag is returned in the
874
+ # response which contains instance partitions, and systems are expected to
875
+ # put that etag in the request to update instance partitions to ensure that
876
+ # their change will be applied to the same version of the instance partition.
877
+ # If no etag is provided in the call to update instance partition, then the
878
+ # existing instance partition is overwritten blindly.
879
+ class InstancePartition
880
+ include ::Google::Protobuf::MessageExts
881
+ extend ::Google::Protobuf::MessageExts::ClassMethods
882
+
883
+ # Indicates the current state of the instance partition.
884
+ module State
885
+ # Not specified.
886
+ STATE_UNSPECIFIED = 0
887
+
888
+ # The instance partition is still being created. Resources may not be
889
+ # available yet, and operations such as creating placements using this
890
+ # instance partition may not work.
891
+ CREATING = 1
892
+
893
+ # The instance partition is fully created and ready to do work such as
894
+ # creating placements and using in databases.
895
+ READY = 2
896
+ end
897
+ end
898
+
899
+ # Metadata type for the operation returned by
900
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client#create_instance_partition CreateInstancePartition}.
901
+ # @!attribute [rw] instance_partition
902
+ # @return [::Google::Cloud::Spanner::Admin::Instance::V1::InstancePartition]
903
+ # The instance partition being created.
904
+ # @!attribute [rw] start_time
905
+ # @return [::Google::Protobuf::Timestamp]
906
+ # The time at which the
907
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client#create_instance_partition CreateInstancePartition}
908
+ # request was received.
909
+ # @!attribute [rw] cancel_time
910
+ # @return [::Google::Protobuf::Timestamp]
911
+ # The time at which this operation was cancelled. If set, this operation is
912
+ # in the process of undoing itself (which is guaranteed to succeed) and
913
+ # cannot be cancelled again.
914
+ # @!attribute [rw] end_time
915
+ # @return [::Google::Protobuf::Timestamp]
916
+ # The time at which this operation failed or was completed successfully.
917
+ class CreateInstancePartitionMetadata
918
+ include ::Google::Protobuf::MessageExts
919
+ extend ::Google::Protobuf::MessageExts::ClassMethods
920
+ end
921
+
922
+ # The request for
923
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client#create_instance_partition CreateInstancePartition}.
924
+ # @!attribute [rw] parent
925
+ # @return [::String]
926
+ # Required. The name of the instance in which to create the instance
927
+ # partition. Values are of the form
928
+ # `projects/<project>/instances/<instance>`.
929
+ # @!attribute [rw] instance_partition_id
930
+ # @return [::String]
931
+ # Required. The ID of the instance partition to create. Valid identifiers are
932
+ # of the form `[a-z][-a-z0-9]*[a-z0-9]` and must be between 2 and 64
933
+ # characters in length.
934
+ # @!attribute [rw] instance_partition
935
+ # @return [::Google::Cloud::Spanner::Admin::Instance::V1::InstancePartition]
936
+ # Required. The instance partition to create. The instance_partition.name may
937
+ # be omitted, but if specified must be
938
+ # `<parent>/instancePartitions/<instance_partition_id>`.
939
+ class CreateInstancePartitionRequest
940
+ include ::Google::Protobuf::MessageExts
941
+ extend ::Google::Protobuf::MessageExts::ClassMethods
942
+ end
943
+
944
+ # The request for
945
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client#delete_instance_partition DeleteInstancePartition}.
946
+ # @!attribute [rw] name
947
+ # @return [::String]
948
+ # Required. The name of the instance partition to be deleted.
949
+ # Values are of the form
950
+ # `projects/{project}/instances/{instance}/instancePartitions/{instance_partition}`
951
+ # @!attribute [rw] etag
952
+ # @return [::String]
953
+ # Optional. If not empty, the API only deletes the instance partition when
954
+ # the etag provided matches the current status of the requested instance
955
+ # partition. Otherwise, deletes the instance partition without checking the
956
+ # current status of the requested instance partition.
957
+ class DeleteInstancePartitionRequest
958
+ include ::Google::Protobuf::MessageExts
959
+ extend ::Google::Protobuf::MessageExts::ClassMethods
960
+ end
961
+
962
+ # The request for
963
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client#get_instance_partition GetInstancePartition}.
964
+ # @!attribute [rw] name
965
+ # @return [::String]
966
+ # Required. The name of the requested instance partition. Values are of
967
+ # the form
968
+ # `projects/{project}/instances/{instance}/instancePartitions/{instance_partition}`.
969
+ class GetInstancePartitionRequest
970
+ include ::Google::Protobuf::MessageExts
971
+ extend ::Google::Protobuf::MessageExts::ClassMethods
972
+ end
973
+
974
+ # The request for
975
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client#update_instance_partition UpdateInstancePartition}.
976
+ # @!attribute [rw] instance_partition
977
+ # @return [::Google::Cloud::Spanner::Admin::Instance::V1::InstancePartition]
978
+ # Required. The instance partition to update, which must always include the
979
+ # instance partition name. Otherwise, only fields mentioned in
980
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::UpdateInstancePartitionRequest#field_mask field_mask}
981
+ # need be included.
982
+ # @!attribute [rw] field_mask
983
+ # @return [::Google::Protobuf::FieldMask]
984
+ # Required. A mask specifying which fields in
985
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::InstancePartition InstancePartition}
986
+ # should be updated. The field mask must always be specified; this prevents
987
+ # any future fields in
988
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::InstancePartition InstancePartition}
989
+ # from being erased accidentally by clients that do not know about them.
990
+ class UpdateInstancePartitionRequest
991
+ include ::Google::Protobuf::MessageExts
992
+ extend ::Google::Protobuf::MessageExts::ClassMethods
993
+ end
994
+
995
+ # Metadata type for the operation returned by
996
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client#update_instance_partition UpdateInstancePartition}.
997
+ # @!attribute [rw] instance_partition
998
+ # @return [::Google::Cloud::Spanner::Admin::Instance::V1::InstancePartition]
999
+ # The desired end state of the update.
1000
+ # @!attribute [rw] start_time
1001
+ # @return [::Google::Protobuf::Timestamp]
1002
+ # The time at which
1003
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client#update_instance_partition UpdateInstancePartition}
1004
+ # request was received.
1005
+ # @!attribute [rw] cancel_time
1006
+ # @return [::Google::Protobuf::Timestamp]
1007
+ # The time at which this operation was cancelled. If set, this operation is
1008
+ # in the process of undoing itself (which is guaranteed to succeed) and
1009
+ # cannot be cancelled again.
1010
+ # @!attribute [rw] end_time
1011
+ # @return [::Google::Protobuf::Timestamp]
1012
+ # The time at which this operation failed or was completed successfully.
1013
+ class UpdateInstancePartitionMetadata
1014
+ include ::Google::Protobuf::MessageExts
1015
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1016
+ end
1017
+
1018
+ # The request for
1019
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client#list_instance_partitions ListInstancePartitions}.
1020
+ # @!attribute [rw] parent
1021
+ # @return [::String]
1022
+ # Required. The instance whose instance partitions should be listed. Values
1023
+ # are of the form `projects/<project>/instances/<instance>`.
1024
+ # @!attribute [rw] page_size
1025
+ # @return [::Integer]
1026
+ # Number of instance partitions to be returned in the response. If 0 or less,
1027
+ # defaults to the server's maximum allowed page size.
1028
+ # @!attribute [rw] page_token
1029
+ # @return [::String]
1030
+ # If non-empty, `page_token` should contain a
1031
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionsResponse#next_page_token next_page_token}
1032
+ # from a previous
1033
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionsResponse ListInstancePartitionsResponse}.
1034
+ # @!attribute [rw] instance_partition_deadline
1035
+ # @return [::Google::Protobuf::Timestamp]
1036
+ # Optional. Deadline used while retrieving metadata for instance partitions.
1037
+ # Instance partitions whose metadata cannot be retrieved within this deadline
1038
+ # will be added to
1039
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionsResponse#unreachable unreachable}
1040
+ # in
1041
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionsResponse ListInstancePartitionsResponse}.
1042
+ class ListInstancePartitionsRequest
1043
+ include ::Google::Protobuf::MessageExts
1044
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1045
+ end
1046
+
1047
+ # The response for
1048
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client#list_instance_partitions ListInstancePartitions}.
1049
+ # @!attribute [rw] instance_partitions
1050
+ # @return [::Array<::Google::Cloud::Spanner::Admin::Instance::V1::InstancePartition>]
1051
+ # The list of requested instancePartitions.
1052
+ # @!attribute [rw] next_page_token
1053
+ # @return [::String]
1054
+ # `next_page_token` can be sent in a subsequent
1055
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client#list_instance_partitions ListInstancePartitions}
1056
+ # call to fetch more of the matching instance partitions.
1057
+ # @!attribute [rw] unreachable
1058
+ # @return [::Array<::String>]
1059
+ # The list of unreachable instance partitions.
1060
+ # It includes the names of instance partitions whose metadata could
1061
+ # not be retrieved within
1062
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionsRequest#instance_partition_deadline instance_partition_deadline}.
1063
+ class ListInstancePartitionsResponse
1064
+ include ::Google::Protobuf::MessageExts
1065
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1066
+ end
1067
+
1068
+ # The request for
1069
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client#list_instance_partition_operations ListInstancePartitionOperations}.
1070
+ # @!attribute [rw] parent
1071
+ # @return [::String]
1072
+ # Required. The parent instance of the instance partition operations.
1073
+ # Values are of the form `projects/<project>/instances/<instance>`.
1074
+ # @!attribute [rw] filter
1075
+ # @return [::String]
1076
+ # Optional. An expression that filters the list of returned operations.
1077
+ #
1078
+ # A filter expression consists of a field name, a
1079
+ # comparison operator, and a value for filtering.
1080
+ # The value must be a string, a number, or a boolean. The comparison operator
1081
+ # must be one of: `<`, `>`, `<=`, `>=`, `!=`, `=`, or `:`.
1082
+ # Colon `:` is the contains operator. Filter rules are not case sensitive.
1083
+ #
1084
+ # The following fields in the {::Google::Longrunning::Operation Operation}
1085
+ # are eligible for filtering:
1086
+ #
1087
+ # * `name` - The name of the long-running operation
1088
+ # * `done` - False if the operation is in progress, else true.
1089
+ # * `metadata.@type` - the type of metadata. For example, the type string
1090
+ # for
1091
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::CreateInstancePartitionMetadata CreateInstancePartitionMetadata}
1092
+ # is
1093
+ # `type.googleapis.com/google.spanner.admin.instance.v1.CreateInstancePartitionMetadata`.
1094
+ # * `metadata.<field_name>` - any field in metadata.value.
1095
+ # `metadata.@type` must be specified first, if filtering on metadata
1096
+ # fields.
1097
+ # * `error` - Error associated with the long-running operation.
1098
+ # * `response.@type` - the type of response.
1099
+ # * `response.<field_name>` - any field in response.value.
1100
+ #
1101
+ # You can combine multiple expressions by enclosing each expression in
1102
+ # parentheses. By default, expressions are combined with AND logic. However,
1103
+ # you can specify AND, OR, and NOT logic explicitly.
1104
+ #
1105
+ # Here are a few examples:
1106
+ #
1107
+ # * `done:true` - The operation is complete.
1108
+ # * `(metadata.@type=` \
1109
+ # `type.googleapis.com/google.spanner.admin.instance.v1.CreateInstancePartitionMetadata)
1110
+ # AND` \
1111
+ # `(metadata.instance_partition.name:custom-instance-partition) AND` \
1112
+ # `(metadata.start_time < \"2021-03-28T14:50:00Z\") AND` \
1113
+ # `(error:*)` - Return operations where:
1114
+ # * The operation's metadata type is
1115
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::CreateInstancePartitionMetadata CreateInstancePartitionMetadata}.
1116
+ # * The instance partition name contains "custom-instance-partition".
1117
+ # * The operation started before 2021-03-28T14:50:00Z.
1118
+ # * The operation resulted in an error.
1119
+ # @!attribute [rw] page_size
1120
+ # @return [::Integer]
1121
+ # Optional. Number of operations to be returned in the response. If 0 or
1122
+ # less, defaults to the server's maximum allowed page size.
1123
+ # @!attribute [rw] page_token
1124
+ # @return [::String]
1125
+ # Optional. If non-empty, `page_token` should contain a
1126
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionOperationsResponse#next_page_token next_page_token}
1127
+ # from a previous
1128
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionOperationsResponse ListInstancePartitionOperationsResponse}
1129
+ # to the same `parent` and with the same `filter`.
1130
+ # @!attribute [rw] instance_partition_deadline
1131
+ # @return [::Google::Protobuf::Timestamp]
1132
+ # Optional. Deadline used while retrieving metadata for instance partition
1133
+ # operations. Instance partitions whose operation metadata cannot be
1134
+ # retrieved within this deadline will be added to
1135
+ # [unreachable][ListInstancePartitionOperationsResponse.unreachable] in
1136
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionOperationsResponse ListInstancePartitionOperationsResponse}.
1137
+ class ListInstancePartitionOperationsRequest
1138
+ include ::Google::Protobuf::MessageExts
1139
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1140
+ end
1141
+
1142
+ # The response for
1143
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client#list_instance_partition_operations ListInstancePartitionOperations}.
1144
+ # @!attribute [rw] operations
1145
+ # @return [::Array<::Google::Longrunning::Operation>]
1146
+ # The list of matching instance partition [long-running
1147
+ # operations][google.longrunning.Operation]. Each operation's name will be
1148
+ # prefixed by the instance partition's name. The operation's
1149
+ # {::Google::Longrunning::Operation#metadata metadata} field type
1150
+ # `metadata.type_url` describes the type of the metadata.
1151
+ # @!attribute [rw] next_page_token
1152
+ # @return [::String]
1153
+ # `next_page_token` can be sent in a subsequent
1154
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::InstanceAdmin::Client#list_instance_partition_operations ListInstancePartitionOperations}
1155
+ # call to fetch more of the matching metadata.
1156
+ # @!attribute [rw] unreachable_instance_partitions
1157
+ # @return [::Array<::String>]
1158
+ # The list of unreachable instance partitions.
1159
+ # It includes the names of instance partitions whose operation metadata could
1160
+ # not be retrieved within
1161
+ # {::Google::Cloud::Spanner::Admin::Instance::V1::ListInstancePartitionOperationsRequest#instance_partition_deadline instance_partition_deadline}.
1162
+ class ListInstancePartitionOperationsResponse
1163
+ include ::Google::Protobuf::MessageExts
1164
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1165
+ end
786
1166
  end
787
1167
  end
788
1168
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-spanner-admin-instance-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-26 00:00:00.000000000 Z
11
+ date: 2024-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common