google-cloud-spanner 1.10.0 → 1.10.1

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: dde38d5d82e73364774672eff6ab0794805e1994e4785ca8d116dddbd0b3b42e
4
- data.tar.gz: 7a9df6a832ff09c3114df44663da677b0a79a8c3ffcb9f699c290055f354690d
3
+ metadata.gz: 6b87978449fd2f7ffb82c0153888807de38900ed7a8f54742f1431e7a2dd95bb
4
+ data.tar.gz: f8c7d087d225bc1570adda320ec3dddd1b6fc6d036434012b01f9bb0662c3259
5
5
  SHA512:
6
- metadata.gz: 9e332afb76f15f0fd3e93fdc60ebc5d31fb588b9750d248a9dd8d75d39f7f49f1bf1b69c1242a180bd938b32e302d9006fc0d7df8646c60d6c3d00b33e3dc1f3
7
- data.tar.gz: 6fee5b7b6d76bf63860eb3f8ceb374ab2ca87decb6afaffef8bdefeb8a952e6ad3110429ae99d9fbf1cef7f7c7d5954b2c83fede80f0f18763a4e4a6a1378942
6
+ metadata.gz: 1025ac36ed30a071b5f5d1445d6a8f2d4bb507229df207b48cc912c6c0037648a49db8aeeeb759f846c89774c823111eefdae1bfecee7ecc6f9a3b7f3fc01a33
7
+ data.tar.gz: 29cf35804b90d60ca00ca07df4eea300f801d5387327f2c9124cf1dbdbf61b3bd529f0ba5861b9379f351e596af28cc3491412dddedad23af8a2659bd5dd99b9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release History
2
2
 
3
+ ### 1.10.1 / 2019-09-04
4
+
5
+ #### Documentation
6
+
7
+ * Update low-level IAM documentation
8
+ * Update GetPolicyOption#requested_policy_version docs
9
+ * Un-deprecate Policy#version
10
+
3
11
  ### 1.10.0 / 2019-08-23
4
12
 
5
13
  #### Features
@@ -20,9 +20,13 @@ module Google
20
20
  # @!attribute [rw] requested_policy_version
21
21
  # @return [Integer]
22
22
  # Optional. The policy format version to be returned.
23
- # Acceptable values are 0 and 1.
24
- # If the value is 0, or the field is omitted, policy format version 1 will be
25
- # returned.
23
+ #
24
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
25
+ # rejected.
26
+ #
27
+ # Requests for policies with any conditional bindings must specify version 3.
28
+ # Policies without any conditional bindings may specify any valid value or
29
+ # leave the field unset.
26
30
  class GetPolicyOptions; end
27
31
  end
28
32
  end
@@ -63,7 +63,14 @@ module Google
63
63
  # [IAM developer's guide](https://cloud.google.com/iam/docs).
64
64
  # @!attribute [rw] version
65
65
  # @return [Integer]
66
- # Deprecated.
66
+ # Specifies the format of the policy.
67
+ #
68
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
69
+ # rejected.
70
+ #
71
+ # Policies with any conditional bindings must specify version 3. Policies
72
+ # without any conditional bindings may specify any valid value or leave the
73
+ # field unset.
67
74
  # @!attribute [rw] bindings
68
75
  # @return [Array<Google::Iam::V1::Binding>]
69
76
  # Associates a list of `members` to a `role`.
@@ -20,9 +20,13 @@ module Google
20
20
  # @!attribute [rw] requested_policy_version
21
21
  # @return [Integer]
22
22
  # Optional. The policy format version to be returned.
23
- # Acceptable values are 0 and 1.
24
- # If the value is 0, or the field is omitted, policy format version 1 will be
25
- # returned.
23
+ #
24
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
25
+ # rejected.
26
+ #
27
+ # Requests for policies with any conditional bindings must specify version 3.
28
+ # Policies without any conditional bindings may specify any valid value or
29
+ # leave the field unset.
26
30
  class GetPolicyOptions; end
27
31
  end
28
32
  end
@@ -63,7 +63,14 @@ module Google
63
63
  # [IAM developer's guide](https://cloud.google.com/iam/docs).
64
64
  # @!attribute [rw] version
65
65
  # @return [Integer]
66
- # Deprecated.
66
+ # Specifies the format of the policy.
67
+ #
68
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
69
+ # rejected.
70
+ #
71
+ # Policies with any conditional bindings must specify version 3. Policies
72
+ # without any conditional bindings may specify any valid value or leave the
73
+ # field unset.
67
74
  # @!attribute [rw] bindings
68
75
  # @return [Array<Google::Iam::V1::Binding>]
69
76
  # Associates a list of `members` to a `role`.
@@ -88,11 +88,13 @@ module Google
88
88
  # 01:30 UTC on January 15, 2017.
89
89
  #
90
90
  # In JavaScript, one can convert a Date object to this format using the
91
- # standard [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
91
+ # standard
92
+ # [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
92
93
  # method. In Python, a standard `datetime.datetime` object can be converted
93
- # to this format using [`strftime`](https://docs.python.org/2/library/time.html#time.strftime)
94
- # with the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one
95
- # can use the Joda Time's [`ISODateTimeFormat.dateTime()`](
94
+ # to this format using
95
+ # [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
96
+ # the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
97
+ # the Joda Time's [`ISODateTimeFormat.dateTime()`](
96
98
  # http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
97
99
  # ) to obtain a formatter capable of generating timestamps in this format.
98
100
  # @!attribute [rw] seconds
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module Spanner
19
- VERSION = "1.10.0".freeze
19
+ VERSION = "1.10.1".freeze
20
20
  end
21
21
  end
22
22
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-spanner
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Moore
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-08-23 00:00:00.000000000 Z
12
+ date: 2019-09-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: google-cloud-core