google-cloud-container_analysis 0.3.1 → 0.3.2

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: 6245bbc3ed96a5ecfe1d3af78b8a6e51064609fc6f7967083b6260f6666315d2
4
- data.tar.gz: 9e9153470e64aa77d9702b93568e5e5ac3df0f278470ccf5ff52b4af4cd69561
3
+ metadata.gz: afb2f329037cefbe9fb8d54e47feaaf53cc6504d4ac3435cfe911f3c52f318d6
4
+ data.tar.gz: c8662004340b989f960d0ed1d4712c11f8cce335c3fbddec2c24748af6fcc3e4
5
5
  SHA512:
6
- metadata.gz: 9d7aa2fef4b6b336fcf30023bcc762493ea6b757ef36e6450faf842679f4c95fca7e632fa6a467a33717ff22db50e5ed1fa0272a6e55e42a561d5b8ea1b39364
7
- data.tar.gz: 609c0def439d78bd791257dea20da177fb63baf566d817db675708ffc1037a7a85a55d2aacc4093724f5bb2cee761d083d4d65348dd13a5ba4694cda63722355
6
+ metadata.gz: 6f796bd6828dcd1ffec9333651b98f0dddb7338c478f1e91e6df744aa501179e56d10d6252876358e2d31ffa016c8d23b520778b6c093f19c2275f77078fb78d
7
+ data.tar.gz: 0641a4824240b7b316174f2ef27ce4de4218cf55cdc861b24f030d643dce53649fcd492d92c486c990955a3079725cfa512fc9b00ee34b56f554ef1f6a8b22fe
@@ -20,27 +20,36 @@ module Google
20
20
  # specify access control policies for Cloud Platform resources.
21
21
  #
22
22
  #
23
- # A `Policy` consists of a list of `bindings`. A `binding` binds a list of
24
- # `members` to a `role`, where the members can be user accounts, Google groups,
25
- # Google domains, and service accounts. A `role` is a named list of permissions
26
- # defined by IAM.
23
+ # A `Policy` is a collection of `bindings`. A `binding` binds one or more
24
+ # `members` to a single `role`. Members can be user accounts, service accounts,
25
+ # Google groups, and domains (such as G Suite). A `role` is a named list of
26
+ # permissions (defined by IAM or configured by users). A `binding` can
27
+ # optionally specify a `condition`, which is a logic expression that further
28
+ # constrains the role binding based on attributes about the request and/or
29
+ # target resource.
27
30
  #
28
31
  # **JSON Example**
29
32
  #
30
33
  # {
31
34
  # "bindings": [
32
35
  # {
33
- # "role": "roles/owner",
36
+ # "role": "roles/resourcemanager.organizationAdmin",
34
37
  # "members": [
35
38
  # "user:mike@example.com",
36
39
  # "group:admins@example.com",
37
40
  # "domain:google.com",
38
- # "serviceAccount:my-other-app@appspot.gserviceaccount.com"
41
+ # "serviceAccount:my-project-id@appspot.gserviceaccount.com"
39
42
  # ]
40
43
  # },
41
44
  # {
42
- # "role": "roles/viewer",
43
- # "members": ["user:sean@example.com"]
45
+ # "role": "roles/resourcemanager.organizationViewer",
46
+ # "members": ["user:eve@example.com"],
47
+ # "condition": {
48
+ # "title": "expirable access",
49
+ # "description": "Does not grant access after Sep 2020",
50
+ # "expression": "request.time <
51
+ # timestamp('2020-10-01T00:00:00.000Z')",
52
+ # }
44
53
  # }
45
54
  # ]
46
55
  # }
@@ -52,15 +61,18 @@ module Google
52
61
  # * user:mike@example.com
53
62
  # * group:admins@example.com
54
63
  # * domain:google.com
55
- # * serviceAccount:my-other-app@appspot.gserviceaccount.com
56
- # role: roles/owner
64
+ # * serviceAccount:my-project-id@appspot.gserviceaccount.com
65
+ # role: roles/resourcemanager.organizationAdmin
57
66
  # * members:
58
- # * user:sean@example.com
59
- # role: roles/viewer
60
- #
61
- #
62
- # For a description of IAM and its features, see the
63
- # [IAM developer's guide](https://cloud.google.com/iam/docs).
67
+ # * user:eve@example.com
68
+ # role: roles/resourcemanager.organizationViewer
69
+ # condition:
70
+ # title: expirable access
71
+ # description: Does not grant access after Sep 2020
72
+ # expression: request.time < timestamp('2020-10-01T00:00:00.000Z')
73
+ #
74
+ # For a description of IAM and its features, see the
75
+ # [IAM developer's guide](https://cloud.google.com/iam/docs).
64
76
  # @!attribute [rw] version
65
77
  # @return [Integer]
66
78
  # Specifies the format of the policy.
@@ -68,12 +80,18 @@ module Google
68
80
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
69
81
  # rejected.
70
82
  #
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.
83
+ # Operations affecting conditional bindings must specify version 3. This can
84
+ # be either setting a conditional policy, modifying a conditional binding,
85
+ # or removing a conditional binding from the stored conditional policy.
86
+ # Operations on non-conditional policies may specify any valid value or
87
+ # leave the field unset.
88
+ #
89
+ # If no etag is provided in the call to `setIamPolicy`, any version
90
+ # compliance checks on the incoming and/or stored policy is skipped.
74
91
  # @!attribute [rw] bindings
75
92
  # @return [Array<Google::Iam::V1::Binding>]
76
- # Associates a list of `members` to a `role`.
93
+ # Associates a list of `members` to a `role`. Optionally may specify a
94
+ # `condition` that determines when binding is in effect.
77
95
  # `bindings` with no members will result in an error.
78
96
  # @!attribute [rw] etag
79
97
  # @return [String]
@@ -86,7 +104,9 @@ module Google
86
104
  # ensure that their change will be applied to the same version of the policy.
87
105
  #
88
106
  # If no `etag` is provided in the call to `setIamPolicy`, then the existing
89
- # policy is overwritten.
107
+ # policy is overwritten. Due to blind-set semantics of an etag-less policy,
108
+ # 'setIamPolicy' will not fail even if either of incoming or stored policy
109
+ # does not meet the version requirements.
90
110
  class Policy; end
91
111
 
92
112
  # Associates `members` with a `role`.
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module ContainerAnalysis
19
- VERSION = "0.3.1".freeze
19
+ VERSION = "0.3.2".freeze
20
20
  end
21
21
  end
22
22
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-container_analysis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-04 00:00:00.000000000 Z
11
+ date: 2019-10-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grafeas-client
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: '0.3'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0.1'
26
+ version: '0.3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: google-gax
29
29
  requirement: !ruby/object:Gem::Requirement