google-cloud-access_approval-v1 0.1.0 → 0.1.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: 43913d050bd9711b88a0c10bea0236be8fef506ce56fab2e9f09232e04c88205
4
- data.tar.gz: 173206f152f0d8e7362220d3947814b7f187bc3c431da24c228e70fb801bc002
3
+ metadata.gz: f6f3f791c68c3279d51a1709f64cda59106bcf82dc40cdddfd1e789c12d8b610
4
+ data.tar.gz: 1a25ce51a1e55d706153e67491001868ec19db7a76f3ce28b5446b3f87b41dfb
5
5
  SHA512:
6
- metadata.gz: bb32ae106a63be9143f65f6807fcea901a8e3748997416d62a6e1d41666c494cf46cb23362c23a08b15726d6fb0b9d44e1106529b3a1c0ba902d24641e4be6dd
7
- data.tar.gz: fbfc1a7ff541032fe9784e16da9d3d55e6769d619db5712eb16ef5f46734aed79b621278efb51f684ad8f02aa34cfec9ebe2b1e4a0a78b3d1c49a1c8a01041d7
6
+ metadata.gz: 58f40dea2c7f9bf6fe894ef94d33cea1acd4d3884e61a4163f20a3ad9e7c5e850cb39ce79602af8b69b4c21d357abd27c12cdd394ddad28bf3b2fd1612465bcf
7
+ data.tar.gz: e7ab6fea838d9e05de49e2389615aae7b92e49f9f74090ed92842b1a7b2655210c50e9b29d24c2f732866d497cd6bde5097388af9d1f2081c691fae59a9b8eac
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module AccessApproval
23
23
  module V1
24
- VERSION = "0.1.0"
24
+ VERSION = "0.1.1"
25
25
  end
26
26
  end
27
27
  end
@@ -87,57 +87,49 @@ module Google
87
87
  # describe the updated values, the API ignores the values of all
88
88
  # fields not covered by the mask.
89
89
  #
90
- # If a repeated field is specified for an update operation, the existing
91
- # repeated values in the target resource will be overwritten by the new values.
92
- # Note that a repeated field is only allowed in the last position of a `paths`
93
- # string.
90
+ # If a repeated field is specified for an update operation, new values will
91
+ # be appended to the existing repeated field in the target resource. Note that
92
+ # a repeated field is only allowed in the last position of a `paths` string.
94
93
  #
95
94
  # If a sub-message is specified in the last position of the field mask for an
96
- # update operation, then the existing sub-message in the target resource is
97
- # overwritten. Given the target message:
95
+ # update operation, then new value will be merged into the existing sub-message
96
+ # in the target resource.
97
+ #
98
+ # For example, given the target message:
98
99
  #
99
100
  # f {
100
101
  # b {
101
- # d : 1
102
- # x : 2
102
+ # d: 1
103
+ # x: 2
103
104
  # }
104
- # c : 1
105
+ # c: [1]
105
106
  # }
106
107
  #
107
108
  # And an update message:
108
109
  #
109
110
  # f {
110
111
  # b {
111
- # d : 10
112
+ # d: 10
112
113
  # }
114
+ # c: [2]
113
115
  # }
114
116
  #
115
117
  # then if the field mask is:
116
118
  #
117
- # paths: "f.b"
119
+ # paths: ["f.b", "f.c"]
118
120
  #
119
121
  # then the result will be:
120
122
  #
121
123
  # f {
122
124
  # b {
123
- # d : 10
125
+ # d: 10
126
+ # x: 2
124
127
  # }
125
- # c : 1
128
+ # c: [1, 2]
126
129
  # }
127
130
  #
128
- # However, if the update mask was:
129
- #
130
- # paths: "f.b.d"
131
- #
132
- # then the result would be:
133
- #
134
- # f {
135
- # b {
136
- # d : 10
137
- # x : 2
138
- # }
139
- # c : 1
140
- # }
131
+ # An implementation may provide options to override this default behavior for
132
+ # repeated and message fields.
141
133
  #
142
134
  # In order to reset a field's value to the default, the field must
143
135
  # be in the mask and set to the default value in the provided resource.
@@ -225,7 +217,7 @@ module Google
225
217
  #
226
218
  # The implementation of any API method which has a FieldMask type field in the
227
219
  # request should verify the included field paths, and return an
228
- # `INVALID_ARGUMENT` error if any path is duplicated or unmappable.
220
+ # `INVALID_ARGUMENT` error if any path is unmappable.
229
221
  # @!attribute [rw] paths
230
222
  # @return [Array<String>]
231
223
  # The set of field mask paths.
@@ -19,17 +19,19 @@
19
19
 
20
20
  module Google
21
21
  module Protobuf
22
- # A Timestamp represents a point in time independent of any time zone
23
- # or calendar, represented as seconds and fractions of seconds at
24
- # nanosecond resolution in UTC Epoch time. It is encoded using the
25
- # Proleptic Gregorian Calendar which extends the Gregorian calendar
26
- # backwards to year one. It is encoded assuming all minutes are 60
27
- # seconds long, i.e. leap seconds are "smeared" so that no leap second
28
- # table is needed for interpretation. Range is from
29
- # 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z.
30
- # By restricting to that range, we ensure that we can convert to
31
- # and from RFC 3339 date strings.
32
- # See [https://www.ietf.org/rfc/rfc3339.txt](https://www.ietf.org/rfc/rfc3339.txt).
22
+ # A Timestamp represents a point in time independent of any time zone or local
23
+ # calendar, encoded as a count of seconds and fractions of seconds at
24
+ # nanosecond resolution. The count is relative to an epoch at UTC midnight on
25
+ # January 1, 1970, in the proleptic Gregorian calendar which extends the
26
+ # Gregorian calendar backwards to year one.
27
+ #
28
+ # All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap
29
+ # second table is needed for interpretation, using a [24-hour linear
30
+ # smear](https://developers.google.com/time/smear).
31
+ #
32
+ # The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By
33
+ # restricting to that range, we ensure that we can convert to and from [RFC
34
+ # 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.
33
35
  #
34
36
  # # Examples
35
37
  #
@@ -90,12 +92,14 @@ module Google
90
92
  # 01:30 UTC on January 15, 2017.
91
93
  #
92
94
  # In JavaScript, one can convert a Date object to this format using the
93
- # standard [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString]
95
+ # standard
96
+ # [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
94
97
  # method. In Python, a standard `datetime.datetime` object can be converted
95
- # to this format using [`strftime`](https://docs.python.org/2/library/time.html#time.strftime)
96
- # with the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one
97
- # can use the Joda Time's [`ISODateTimeFormat.dateTime()`](
98
- # http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime--
98
+ # to this format using
99
+ # [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
100
+ # the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
101
+ # the Joda Time's [`ISODateTimeFormat.dateTime()`](
102
+ # http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
99
103
  # ) to obtain a formatter capable of generating timestamps in this format.
100
104
  # @!attribute [rw] seconds
101
105
  # @return [Integer]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-access_approval-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-30 00:00:00.000000000 Z
11
+ date: 2020-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common