google-apis-bigtableadmin_v2 0.6.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2a52fc188c571e7bd4b278169645ef2fdda4eda3866fb435c9a5f77b754d8455
4
- data.tar.gz: 53ac2b462036b9bc7beb7478d6b640ae061d27b176d270202b43ed496533d942
3
+ metadata.gz: 36df6b35e1395753a628ad4f46fa24d4736271a8d60e3f11b96bbb658cde039b
4
+ data.tar.gz: 2d4e4a49b175e17230deea82cefee3a32f1e6b64f38465f86a8cd9a9450a7c8b
5
5
  SHA512:
6
- metadata.gz: ca2091a9dcae3d0adc96ec37ac6e47e4bd53b4c1635f971801f7d3713bb9bf10a65e815f514f25fce451298e2e57e3c0f3b2578bc99f82a3bfe92ecb5b4dee20
7
- data.tar.gz: 34eb922593a3ab8624ff26922384ab9be25e7455af9d48556d2b113533f95cc5e2fdd07330cb01f495c24ef6d76619899f11e1c276a45f3c582ebc87de9501a5
6
+ metadata.gz: 9acd4de794a86ac065b36a720f4fd475c988f3b29e7ccf25eec1ec9b7498b0c7c7299f3789cf84728516645cd61ac8c0c7eb50c8d05b33cf154dc429f8d168ff
7
+ data.tar.gz: d2712343da5d19d2723db92415ee51979b457702822c9c2a743ce42df9fa7263461203f1ab004b825de997981f6f341565977ad61544678c05607cc6a171ad76
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-bigtableadmin_v2
2
2
 
3
+ ### v0.10.0 (2021-10-02)
4
+
5
+ * Regenerated from discovery document revision 20210921
6
+
7
+ ### v0.9.0 (2021-09-07)
8
+
9
+ * Regenerated from discovery document revision 20210811
10
+
11
+ ### v0.8.0 (2021-06-29)
12
+
13
+ * Regenerated using generator version 0.4.0
14
+
15
+ ### v0.7.0 (2021-06-24)
16
+
17
+ * Unspecified changes
18
+
3
19
  ### v0.6.0 (2021-06-09)
4
20
 
5
21
  * Regenerated from discovery document revision 20210513
@@ -1046,6 +1046,12 @@ module Google
1046
1046
  class Instance
1047
1047
  include Google::Apis::Core::Hashable
1048
1048
 
1049
+ # Output only. A server-assigned timestamp representing when this Instance was
1050
+ # created.
1051
+ # Corresponds to the JSON property `createTime`
1052
+ # @return [String]
1053
+ attr_accessor :create_time
1054
+
1049
1055
  # Required. The descriptive name for this instance as it appears in UIs. Can be
1050
1056
  # changed at any time, but should be kept globally unique to avoid confusion.
1051
1057
  # Corresponds to the JSON property `displayName`
@@ -1086,6 +1092,7 @@ module Google
1086
1092
 
1087
1093
  # Update properties of this object
1088
1094
  def update!(**args)
1095
+ @create_time = args[:create_time] if args.key?(:create_time)
1089
1096
  @display_name = args[:display_name] if args.key?(:display_name)
1090
1097
  @labels = args[:labels] if args.key?(:labels)
1091
1098
  @name = args[:name] if args.key?(:name)
@@ -1435,12 +1442,19 @@ module Google
1435
1442
  class MultiClusterRoutingUseAny
1436
1443
  include Google::Apis::Core::Hashable
1437
1444
 
1445
+ # The set of clusters to route to. The order is ignored; clusters will be tried
1446
+ # in order of distance. If left empty, all clusters are eligible.
1447
+ # Corresponds to the JSON property `clusterIds`
1448
+ # @return [Array<String>]
1449
+ attr_accessor :cluster_ids
1450
+
1438
1451
  def initialize(**args)
1439
1452
  update!(**args)
1440
1453
  end
1441
1454
 
1442
1455
  # Update properties of this object
1443
1456
  def update!(**args)
1457
+ @cluster_ids = args[:cluster_ids] if args.key?(:cluster_ids)
1444
1458
  end
1445
1459
  end
1446
1460
 
@@ -1618,7 +1632,7 @@ module Google
1618
1632
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1619
1633
  # roles/resourcemanager.organizationViewer condition: title: expirable access
1620
1634
  # description: Does not grant access after Sep 2020 expression: request.time <
1621
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1635
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1622
1636
  # description of IAM and its features, see the [IAM documentation](https://cloud.
1623
1637
  # google.com/iam/docs/).
1624
1638
  class Policy
@@ -1816,7 +1830,7 @@ module Google
1816
1830
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1817
1831
  # roles/resourcemanager.organizationViewer condition: title: expirable access
1818
1832
  # description: Does not grant access after Sep 2020 expression: request.time <
1819
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1833
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1820
1834
  # description of IAM and its features, see the [IAM documentation](https://cloud.
1821
1835
  # google.com/iam/docs/).
1822
1836
  # Corresponds to the JSON property `policy`
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BigtableadminV2
18
18
  # Version of the google-apis-bigtableadmin_v2 gem
19
- GEM_VERSION = "0.6.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210513"
25
+ REVISION = "20210921"
26
26
  end
27
27
  end
28
28
  end
@@ -669,6 +669,7 @@ module Google
669
669
  class Instance
670
670
  # @private
671
671
  class Representation < Google::Apis::Core::JsonRepresentation
672
+ property :create_time, as: 'createTime'
672
673
  property :display_name, as: 'displayName'
673
674
  hash :labels, as: 'labels'
674
675
  property :name, as: 'name'
@@ -785,6 +786,7 @@ module Google
785
786
  class MultiClusterRoutingUseAny
786
787
  # @private
787
788
  class Representation < Google::Apis::Core::JsonRepresentation
789
+ collection :cluster_ids, as: 'clusterIds'
788
790
  end
789
791
  end
790
792
 
@@ -50,10 +50,10 @@ module Google
50
50
  # Administer your Cloud Bigtable tables
51
51
  AUTH_CLOUD_BIGTABLE_ADMIN_TABLE = 'https://www.googleapis.com/auth/cloud-bigtable.admin.table'
52
52
 
53
- # See, edit, configure, and delete your Google Cloud Platform data
53
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
54
54
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
55
55
 
56
- # View your data across Google Cloud Platform services
56
+ # View your data across Google Cloud services and see the email address of your Google Account
57
57
  AUTH_CLOUD_PLATFORM_READ_ONLY = 'https://www.googleapis.com/auth/cloud-platform.read-only'
58
58
  end
59
59
  end
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-bigtableadmin_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.10.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: 2021-06-14 00:00:00.000000000 Z
11
+ date: 2021-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: '0.4'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0.4'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '0.1'
32
+ version: 2.a
27
33
  description: This is the simple REST client for Cloud Bigtable Admin API V2. Simple
28
34
  REST clients are Ruby client libraries that provide access to Google services via
29
35
  their HTTP REST API endpoints. These libraries are generated and updated automatically
@@ -52,7 +58,7 @@ licenses:
52
58
  metadata:
53
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-bigtableadmin_v2/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.6.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.10.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-bigtableadmin_v2
57
63
  post_install_message:
58
64
  rdoc_options: []