google-cloud-security_center-v1 0.13.0 → 0.16.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -0
  3. data/lib/google/cloud/security_center/v1/security_center/client.rb +37 -32
  4. data/lib/google/cloud/security_center/v1/version.rb +1 -1
  5. data/lib/google/cloud/securitycenter/v1/asset_pb.rb +2 -1
  6. data/lib/google/cloud/securitycenter/v1/bigquery_export_pb.rb +2 -1
  7. data/lib/google/cloud/securitycenter/v1/compliance_pb.rb +24 -0
  8. data/lib/google/cloud/securitycenter/v1/connection_pb.rb +35 -0
  9. data/lib/google/cloud/securitycenter/v1/exfiltration_pb.rb +28 -0
  10. data/lib/google/cloud/securitycenter/v1/external_system_pb.rb +2 -1
  11. data/lib/google/cloud/securitycenter/v1/file_pb.rb +27 -0
  12. data/lib/google/cloud/securitycenter/v1/finding_pb.rb +14 -1
  13. data/lib/google/cloud/securitycenter/v1/iam_binding_pb.rb +30 -0
  14. data/lib/google/cloud/securitycenter/v1/mitre_attack_pb.rb +3 -0
  15. data/lib/google/cloud/securitycenter/v1/mute_config_pb.rb +2 -1
  16. data/lib/google/cloud/securitycenter/v1/notification_config_pb.rb +2 -1
  17. data/lib/google/cloud/securitycenter/v1/notification_message_pb.rb +2 -1
  18. data/lib/google/cloud/securitycenter/v1/organization_settings_pb.rb +2 -1
  19. data/lib/google/cloud/securitycenter/v1/process_pb.rb +37 -0
  20. data/lib/google/cloud/securitycenter/v1/resource_pb.rb +4 -3
  21. data/lib/google/cloud/securitycenter/v1/run_asset_discovery_response_pb.rb +2 -1
  22. data/lib/google/cloud/securitycenter/v1/security_marks_pb.rb +2 -1
  23. data/lib/google/cloud/securitycenter/v1/securitycenter_service_pb.rb +4 -3
  24. data/lib/google/cloud/securitycenter/v1/source_pb.rb +2 -1
  25. data/proto_docs/google/cloud/securitycenter/v1/bigquery_export.rb +5 -5
  26. data/proto_docs/google/cloud/securitycenter/v1/compliance.rb +43 -0
  27. data/proto_docs/google/cloud/securitycenter/v1/connection.rb +70 -0
  28. data/proto_docs/google/cloud/securitycenter/v1/exfiltration.rb +59 -0
  29. data/proto_docs/google/cloud/securitycenter/v1/external_system.rb +2 -1
  30. data/proto_docs/google/cloud/securitycenter/v1/file.rb +56 -0
  31. data/proto_docs/google/cloud/securitycenter/v1/finding.rb +24 -2
  32. data/proto_docs/google/cloud/securitycenter/v1/iam_binding.rb +56 -0
  33. data/proto_docs/google/cloud/securitycenter/v1/mitre_attack.rb +9 -0
  34. data/proto_docs/google/cloud/securitycenter/v1/process.rb +75 -0
  35. data/proto_docs/google/cloud/securitycenter/v1/resource.rb +7 -7
  36. data/proto_docs/google/cloud/securitycenter/v1/securitycenter_service.rb +36 -37
  37. data/proto_docs/google/iam/v1/iam_policy.rb +8 -1
  38. data/proto_docs/google/iam/v1/options.rb +14 -4
  39. data/proto_docs/google/iam/v1/policy.rb +208 -38
  40. data/proto_docs/google/protobuf/any.rb +3 -3
  41. data/proto_docs/google/protobuf/struct.rb +2 -2
  42. metadata +19 -13
@@ -29,8 +29,8 @@ module Google
29
29
  # 2. Once a bulk operation is started, there is no way to stop it.
30
30
  # @!attribute [rw] parent
31
31
  # @return [::String]
32
- # Required. The parent, at which bulk action needs to be applied. Its format
33
- # is "organizations/[organization_id]", "folders/[folder_id]",
32
+ # Required. The parent, at which bulk action needs to be applied. Its format is
33
+ # "organizations/[organization_id]", "folders/[folder_id]",
34
34
  # "projects/[project_id]".
35
35
  # @!attribute [rw] filter
36
36
  # @return [::String]
@@ -81,8 +81,8 @@ module Google
81
81
  # greater than 0 characters in length.
82
82
  # @!attribute [rw] finding
83
83
  # @return [::Google::Cloud::SecurityCenter::V1::Finding]
84
- # Required. The Finding being created. The name and security_marks will be
85
- # ignored as they are both output only fields on this resource.
84
+ # Required. The Finding being created. The name and security_marks will be ignored as
85
+ # they are both output only fields on this resource.
86
86
  class CreateFindingRequest
87
87
  include ::Google::Protobuf::MessageExts
88
88
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -111,8 +111,8 @@ module Google
111
111
  # Request message for creating a notification config.
112
112
  # @!attribute [rw] parent
113
113
  # @return [::String]
114
- # Required. Resource name of the new notification config's parent. Its format
115
- # is "organizations/[organization_id]".
114
+ # Required. Resource name of the new notification config's parent. Its format is
115
+ # "organizations/[organization_id]".
116
116
  # @!attribute [rw] config_id
117
117
  # @return [::String]
118
118
  # Required.
@@ -121,9 +121,8 @@ module Google
121
121
  # characters, underscores or hyphens only.
122
122
  # @!attribute [rw] notification_config
123
123
  # @return [::Google::Cloud::SecurityCenter::V1::NotificationConfig]
124
- # Required. The notification config being created. The name and the service
125
- # account will be ignored as they are both output only fields on this
126
- # resource.
124
+ # Required. The notification config being created. The name and the service account
125
+ # will be ignored as they are both output only fields on this resource.
127
126
  class CreateNotificationConfigRequest
128
127
  include ::Google::Protobuf::MessageExts
129
128
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -136,8 +135,8 @@ module Google
136
135
  # "organizations/[organization_id]".
137
136
  # @!attribute [rw] source
138
137
  # @return [::Google::Cloud::SecurityCenter::V1::Source]
139
- # Required. The Source being created, only the display_name and description
140
- # will be used. All other fields will be ignored.
138
+ # Required. The Source being created, only the display_name and description will be
139
+ # used. All other fields will be ignored.
141
140
  class CreateSourceRequest
142
141
  include ::Google::Protobuf::MessageExts
143
142
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -202,8 +201,8 @@ module Google
202
201
  # Request message for getting organization settings.
203
202
  # @!attribute [rw] name
204
203
  # @return [::String]
205
- # Required. Name of the organization to get organization settings for. Its
206
- # format is "organizations/[organization_id]/organizationSettings".
204
+ # Required. Name of the organization to get organization settings for. Its format is
205
+ # "organizations/[organization_id]/organizationSettings".
207
206
  class GetOrganizationSettingsRequest
208
207
  include ::Google::Protobuf::MessageExts
209
208
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -291,9 +290,9 @@ module Google
291
290
  # property not existing: `-resource_properties.my_property : ""`
292
291
  # @!attribute [rw] group_by
293
292
  # @return [::String]
294
- # Required. Expression that defines what assets fields to use for grouping.
295
- # The string value should follow SQL syntax: comma separated list of fields.
296
- # For example:
293
+ # Required. Expression that defines what assets fields to use for grouping. The string
294
+ # value should follow SQL syntax: comma separated list of fields. For
295
+ # example:
297
296
  # "security_center_properties.resource_project,security_center_properties.project".
298
297
  #
299
298
  # The following fields are supported when compare_duration is not set:
@@ -452,9 +451,9 @@ module Google
452
451
  # * resource.type: `=`, `:`
453
452
  # @!attribute [rw] group_by
454
453
  # @return [::String]
455
- # Required. Expression that defines what assets fields to use for grouping
456
- # (including `state_change`). The string value should follow SQL syntax:
457
- # comma separated list of fields. For example: "parent,resource_name".
454
+ # Required. Expression that defines what assets fields to use for grouping (including
455
+ # `state_change`). The string value should follow SQL syntax: comma separated
456
+ # list of fields. For example: "parent,resource_name".
458
457
  #
459
458
  # The following fields are supported:
460
459
  #
@@ -567,8 +566,8 @@ module Google
567
566
  # folder or project.
568
567
  # @!attribute [rw] parent
569
568
  # @return [::String]
570
- # Required. The parent, which owns the collection of mute configs. Its format
571
- # is "organizations/[organization_id]", "folders/[folder_id]",
569
+ # Required. The parent, which owns the collection of mute configs. Its format is
570
+ # "organizations/[organization_id]", "folders/[folder_id]",
572
571
  # "projects/[project_id]".
573
572
  # @!attribute [rw] page_size
574
573
  # @return [::Integer]
@@ -636,8 +635,8 @@ module Google
636
635
  # Request message for listing sources.
637
636
  # @!attribute [rw] parent
638
637
  # @return [::String]
639
- # Required. Resource name of the parent of sources to list. Its format should
640
- # be "organizations/[organization_id], folders/[folder_id], or
638
+ # Required. Resource name of the parent of sources to list. Its format should be
639
+ # "organizations/[organization_id], folders/[folder_id], or
641
640
  # projects/[project_id]".
642
641
  # @!attribute [rw] page_token
643
642
  # @return [::String]
@@ -1048,29 +1047,29 @@ module Google
1048
1047
  # @return [::String]
1049
1048
  # The full resource name of the resource. See:
1050
1049
  # https://cloud.google.com/apis/design/resource_names#full_resource_name
1050
+ # @!attribute [rw] display_name
1051
+ # @return [::String]
1052
+ # The human readable name of the resource.
1053
+ # @!attribute [rw] type
1054
+ # @return [::String]
1055
+ # The full resource type of the resource.
1051
1056
  # @!attribute [rw] project_name
1052
1057
  # @return [::String]
1053
1058
  # The full resource name of project that the resource belongs to.
1054
1059
  # @!attribute [rw] project_display_name
1055
1060
  # @return [::String]
1056
- # The project id that the resource belongs to.
1061
+ # The project ID that the resource belongs to.
1057
1062
  # @!attribute [rw] parent_name
1058
1063
  # @return [::String]
1059
1064
  # The full resource name of resource's parent.
1060
1065
  # @!attribute [rw] parent_display_name
1061
1066
  # @return [::String]
1062
1067
  # The human readable name of resource's parent.
1063
- # @!attribute [rw] type
1064
- # @return [::String]
1065
- # The full resource type of the resource.
1066
1068
  # @!attribute [rw] folders
1067
1069
  # @return [::Array<::Google::Cloud::SecurityCenter::V1::Folder>]
1068
1070
  # Contains a Folder message for each folder in the assets ancestry.
1069
1071
  # The first folder is the deepest nested folder, and the last folder is
1070
1072
  # the folder directly under the Organization.
1071
- # @!attribute [rw] display_name
1072
- # @return [::String]
1073
- # The human readable name of the resource.
1074
1073
  class Resource
1075
1074
  include ::Google::Protobuf::MessageExts
1076
1075
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1144,8 +1143,8 @@ module Google
1144
1143
  # Request message for running asset discovery for an organization.
1145
1144
  # @!attribute [rw] parent
1146
1145
  # @return [::String]
1147
- # Required. Name of the organization to run asset discovery for. Its format
1148
- # is "organizations/[organization_id]".
1146
+ # Required. Name of the organization to run asset discovery for. Its format is
1147
+ # "organizations/[organization_id]".
1149
1148
  class RunAssetDiscoveryRequest
1150
1149
  include ::Google::Protobuf::MessageExts
1151
1150
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1168,8 +1167,8 @@ module Google
1168
1167
  # Request message for updating or creating a finding.
1169
1168
  # @!attribute [rw] finding
1170
1169
  # @return [::Google::Cloud::SecurityCenter::V1::Finding]
1171
- # Required. The finding resource to update or create if it does not already
1172
- # exist. parent, security_marks, and update_time will be ignored.
1170
+ # Required. The finding resource to update or create if it does not already exist.
1171
+ # parent, security_marks, and update_time will be ignored.
1173
1172
  #
1174
1173
  # In the case of creation, the finding id portion of the name must be
1175
1174
  # alphanumeric and less than or equal to 32 characters and greater than 0
@@ -1259,7 +1258,7 @@ module Google
1259
1258
  # The time at which the updated SecurityMarks take effect.
1260
1259
  # If not set uses current server time. Updates will be applied to the
1261
1260
  # SecurityMarks that are active immediately preceding this time. Must be
1262
- # smaller or equal to the server time.
1261
+ # earlier or equal to the server time.
1263
1262
  class UpdateSecurityMarksRequest
1264
1263
  include ::Google::Protobuf::MessageExts
1265
1264
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1302,8 +1301,8 @@ module Google
1302
1301
  # organization, folder or project.
1303
1302
  # @!attribute [rw] parent
1304
1303
  # @return [::String]
1305
- # Required. The parent, which owns the collection of BigQuery exports. Its
1306
- # format is "organizations/[organization_id]", "folders/[folder_id]",
1304
+ # Required. The parent, which owns the collection of BigQuery exports. Its format is
1305
+ # "organizations/[organization_id]", "folders/[folder_id]",
1307
1306
  # "projects/[project_id]".
1308
1307
  # @!attribute [rw] page_size
1309
1308
  # @return [::Integer]
@@ -31,6 +31,13 @@ module Google
31
31
  # the policy is limited to a few 10s of KB. An empty policy is a
32
32
  # valid policy but certain Cloud Platform services (such as Projects)
33
33
  # might reject them.
34
+ # @!attribute [rw] update_mask
35
+ # @return [::Google::Protobuf::FieldMask]
36
+ # OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only
37
+ # the fields in the mask will be modified. If no mask is provided, the
38
+ # following default mask is used:
39
+ #
40
+ # `paths: "bindings, etag"`
34
41
  class SetIamPolicyRequest
35
42
  include ::Google::Protobuf::MessageExts
36
43
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -44,7 +51,7 @@ module Google
44
51
  # @!attribute [rw] options
45
52
  # @return [::Google::Iam::V1::GetPolicyOptions]
46
53
  # OPTIONAL: A `GetPolicyOptions` object for specifying options to
47
- # `GetIamPolicy`. This field is only used by Cloud IAM.
54
+ # `GetIamPolicy`.
48
55
  class GetIamPolicyRequest
49
56
  include ::Google::Protobuf::MessageExts
50
57
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -23,14 +23,24 @@ module Google
23
23
  # Encapsulates settings provided to GetIamPolicy.
24
24
  # @!attribute [rw] requested_policy_version
25
25
  # @return [::Integer]
26
- # Optional. The policy format version to be returned.
26
+ # Optional. The maximum policy version that will be used to format the
27
+ # policy.
27
28
  #
28
29
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
29
30
  # rejected.
30
31
  #
31
- # Requests for policies with any conditional bindings must specify version 3.
32
- # Policies without any conditional bindings may specify any valid value or
33
- # leave the field unset.
32
+ # Requests for policies with any conditional role bindings must specify
33
+ # version 3. Policies with no conditional role bindings may specify any valid
34
+ # value or leave the field unset.
35
+ #
36
+ # The policy in the response might use the policy version that you specified,
37
+ # or it might use a lower policy version. For example, if you specify version
38
+ # 3, but the policy has no conditional role bindings, the response uses
39
+ # version 1.
40
+ #
41
+ # To learn which resources support conditions in their IAM policies, see the
42
+ # [IAM
43
+ # documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
34
44
  class GetPolicyOptions
35
45
  include ::Google::Protobuf::MessageExts
36
46
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -20,19 +20,24 @@
20
20
  module Google
21
21
  module Iam
22
22
  module V1
23
- # Defines an Identity and Access Management (IAM) policy. It is used to
24
- # specify access control policies for Cloud Platform resources.
23
+ # An Identity and Access Management (IAM) policy, which specifies access
24
+ # controls for Google Cloud resources.
25
25
  #
26
26
  #
27
27
  # A `Policy` is a collection of `bindings`. A `binding` binds one or more
28
- # `members` to a single `role`. Members can be user accounts, service accounts,
29
- # Google groups, and domains (such as G Suite). A `role` is a named list of
30
- # permissions (defined by IAM or configured by users). A `binding` can
31
- # optionally specify a `condition`, which is a logic expression that further
32
- # constrains the role binding based on attributes about the request and/or
33
- # target resource.
28
+ # `members`, or principals, to a single `role`. Principals can be user
29
+ # accounts, service accounts, Google groups, and domains (such as G Suite). A
30
+ # `role` is a named list of permissions; each `role` can be an IAM predefined
31
+ # role or a user-created custom role.
34
32
  #
35
- # **JSON Example**
33
+ # For some types of Google Cloud resources, a `binding` can also specify a
34
+ # `condition`, which is a logical expression that allows access to a resource
35
+ # only if the expression evaluates to `true`. A condition can add constraints
36
+ # based on attributes of the request, the resource, or both. To learn which
37
+ # resources support conditions in their IAM policies, see the
38
+ # [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
39
+ #
40
+ # **JSON example:**
36
41
  #
37
42
  # {
38
43
  # "bindings": [
@@ -47,18 +52,21 @@ module Google
47
52
  # },
48
53
  # {
49
54
  # "role": "roles/resourcemanager.organizationViewer",
50
- # "members": ["user:eve@example.com"],
55
+ # "members": [
56
+ # "user:eve@example.com"
57
+ # ],
51
58
  # "condition": {
52
59
  # "title": "expirable access",
53
60
  # "description": "Does not grant access after Sep 2020",
54
- # "expression": "request.time <
55
- # timestamp('2020-10-01T00:00:00.000Z')",
61
+ # "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')",
56
62
  # }
57
63
  # }
58
- # ]
64
+ # ],
65
+ # "etag": "BwWWja0YfJA=",
66
+ # "version": 3
59
67
  # }
60
68
  #
61
- # **YAML Example**
69
+ # **YAML example:**
62
70
  #
63
71
  # bindings:
64
72
  # - members:
@@ -74,30 +82,52 @@ module Google
74
82
  # title: expirable access
75
83
  # description: Does not grant access after Sep 2020
76
84
  # expression: request.time < timestamp('2020-10-01T00:00:00.000Z')
85
+ # etag: BwWWja0YfJA=
86
+ # version: 3
77
87
  #
78
88
  # For a description of IAM and its features, see the
79
- # [IAM developer's guide](https://cloud.google.com/iam/docs).
89
+ # [IAM documentation](https://cloud.google.com/iam/docs/).
80
90
  # @!attribute [rw] version
81
91
  # @return [::Integer]
82
92
  # Specifies the format of the policy.
83
93
  #
84
- # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
85
- # rejected.
94
+ # Valid values are `0`, `1`, and `3`. Requests that specify an invalid value
95
+ # are rejected.
96
+ #
97
+ # Any operation that affects conditional role bindings must specify version
98
+ # `3`. This requirement applies to the following operations:
86
99
  #
87
- # Operations affecting conditional bindings must specify version 3. This can
88
- # be either setting a conditional policy, modifying a conditional binding,
89
- # or removing a binding (conditional or unconditional) from the stored
90
- # conditional policy.
91
- # Operations on non-conditional policies may specify any valid value or
92
- # leave the field unset.
100
+ # * Getting a policy that includes a conditional role binding
101
+ # * Adding a conditional role binding to a policy
102
+ # * Changing a conditional role binding in a policy
103
+ # * Removing any role binding, with or without a condition, from a policy
104
+ # that includes conditions
93
105
  #
94
- # If no etag is provided in the call to `setIamPolicy`, version compliance
95
- # checks against the stored policy is skipped.
106
+ # **Important:** If you use IAM Conditions, you must include the `etag` field
107
+ # whenever you call `setIamPolicy`. If you omit this field, then IAM allows
108
+ # you to overwrite a version `3` policy with a version `1` policy, and all of
109
+ # the conditions in the version `3` policy are lost.
110
+ #
111
+ # If a policy does not include any conditions, operations on that policy may
112
+ # specify any valid version or leave the field unset.
113
+ #
114
+ # To learn which resources support conditions in their IAM policies, see the
115
+ # [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
96
116
  # @!attribute [rw] bindings
97
117
  # @return [::Array<::Google::Iam::V1::Binding>]
98
- # Associates a list of `members` to a `role`. Optionally may specify a
99
- # `condition` that determines when binding is in effect.
100
- # `bindings` with no members will result in an error.
118
+ # Associates a list of `members`, or principals, with a `role`. Optionally,
119
+ # may specify a `condition` that determines how and when the `bindings` are
120
+ # applied. Each of the `bindings` must contain at least one principal.
121
+ #
122
+ # The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250
123
+ # of these principals can be Google groups. Each occurrence of a principal
124
+ # counts towards these limits. For example, if the `bindings` grant 50
125
+ # different roles to `user:alice@example.com`, and not to any other
126
+ # principal, then you can add another 1,450 principals to the `bindings` in
127
+ # the `Policy`.
128
+ # @!attribute [rw] audit_configs
129
+ # @return [::Array<::Google::Iam::V1::AuditConfig>]
130
+ # Specifies cloud audit logging configuration for this policy.
101
131
  # @!attribute [rw] etag
102
132
  # @return [::String]
103
133
  # `etag` is used for optimistic concurrency control as a way to help
@@ -108,23 +138,23 @@ module Google
108
138
  # systems are expected to put that etag in the request to `setIamPolicy` to
109
139
  # ensure that their change will be applied to the same version of the policy.
110
140
  #
111
- # If no `etag` is provided in the call to `setIamPolicy`, then the existing
112
- # policy is overwritten. Due to blind-set semantics of an etag-less policy,
113
- # 'setIamPolicy' will not fail even if the incoming policy version does not
114
- # meet the requirements for modifying the stored policy.
141
+ # **Important:** If you use IAM Conditions, you must include the `etag` field
142
+ # whenever you call `setIamPolicy`. If you omit this field, then IAM allows
143
+ # you to overwrite a version `3` policy with a version `1` policy, and all of
144
+ # the conditions in the version `3` policy are lost.
115
145
  class Policy
116
146
  include ::Google::Protobuf::MessageExts
117
147
  extend ::Google::Protobuf::MessageExts::ClassMethods
118
148
  end
119
149
 
120
- # Associates `members` with a `role`.
150
+ # Associates `members`, or principals, with a `role`.
121
151
  # @!attribute [rw] role
122
152
  # @return [::String]
123
- # Role that is assigned to `members`.
153
+ # Role that is assigned to the list of `members`, or principals.
124
154
  # For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
125
155
  # @!attribute [rw] members
126
156
  # @return [::Array<::String>]
127
- # Specifies the identities requesting access for a Cloud Platform resource.
157
+ # Specifies the principals requesting access for a Cloud Platform resource.
128
158
  # `members` can have the following values:
129
159
  #
130
160
  # * `allUsers`: A special identifier that represents anyone who is
@@ -143,20 +173,160 @@ module Google
143
173
  # * `group:{emailid}`: An email address that represents a Google group.
144
174
  # For example, `admins@example.com`.
145
175
  #
176
+ # * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique
177
+ # identifier) representing a user that has been recently deleted. For
178
+ # example, `alice@example.com?uid=123456789012345678901`. If the user is
179
+ # recovered, this value reverts to `user:{emailid}` and the recovered user
180
+ # retains the role in the binding.
181
+ #
182
+ # * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus
183
+ # unique identifier) representing a service account that has been recently
184
+ # deleted. For example,
185
+ # `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`.
186
+ # If the service account is undeleted, this value reverts to
187
+ # `serviceAccount:{emailid}` and the undeleted service account retains the
188
+ # role in the binding.
189
+ #
190
+ # * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique
191
+ # identifier) representing a Google group that has been recently
192
+ # deleted. For example, `admins@example.com?uid=123456789012345678901`. If
193
+ # the group is recovered, this value reverts to `group:{emailid}` and the
194
+ # recovered group retains the role in the binding.
195
+ #
146
196
  #
147
197
  # * `domain:{domain}`: The G Suite domain (primary) that represents all the
148
198
  # users of that domain. For example, `google.com` or `example.com`.
149
199
  # @!attribute [rw] condition
150
200
  # @return [::Google::Type::Expr]
151
201
  # The condition that is associated with this binding.
152
- # NOTE: An unsatisfied condition will not allow user access via current
153
- # binding. Different bindings, including their conditions, are examined
154
- # independently.
202
+ #
203
+ # If the condition evaluates to `true`, then this binding applies to the
204
+ # current request.
205
+ #
206
+ # If the condition evaluates to `false`, then this binding does not apply to
207
+ # the current request. However, a different role binding might grant the same
208
+ # role to one or more of the principals in this binding.
209
+ #
210
+ # To learn which resources support conditions in their IAM policies, see the
211
+ # [IAM
212
+ # documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
155
213
  class Binding
156
214
  include ::Google::Protobuf::MessageExts
157
215
  extend ::Google::Protobuf::MessageExts::ClassMethods
158
216
  end
159
217
 
218
+ # Specifies the audit configuration for a service.
219
+ # The configuration determines which permission types are logged, and what
220
+ # identities, if any, are exempted from logging.
221
+ # An AuditConfig must have one or more AuditLogConfigs.
222
+ #
223
+ # If there are AuditConfigs for both `allServices` and a specific service,
224
+ # the union of the two AuditConfigs is used for that service: the log_types
225
+ # specified in each AuditConfig are enabled, and the exempted_members in each
226
+ # AuditLogConfig are exempted.
227
+ #
228
+ # Example Policy with multiple AuditConfigs:
229
+ #
230
+ # {
231
+ # "audit_configs": [
232
+ # {
233
+ # "service": "allServices",
234
+ # "audit_log_configs": [
235
+ # {
236
+ # "log_type": "DATA_READ",
237
+ # "exempted_members": [
238
+ # "user:jose@example.com"
239
+ # ]
240
+ # },
241
+ # {
242
+ # "log_type": "DATA_WRITE"
243
+ # },
244
+ # {
245
+ # "log_type": "ADMIN_READ"
246
+ # }
247
+ # ]
248
+ # },
249
+ # {
250
+ # "service": "sampleservice.googleapis.com",
251
+ # "audit_log_configs": [
252
+ # {
253
+ # "log_type": "DATA_READ"
254
+ # },
255
+ # {
256
+ # "log_type": "DATA_WRITE",
257
+ # "exempted_members": [
258
+ # "user:aliya@example.com"
259
+ # ]
260
+ # }
261
+ # ]
262
+ # }
263
+ # ]
264
+ # }
265
+ #
266
+ # For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ
267
+ # logging. It also exempts jose@example.com from DATA_READ logging, and
268
+ # aliya@example.com from DATA_WRITE logging.
269
+ # @!attribute [rw] service
270
+ # @return [::String]
271
+ # Specifies a service that will be enabled for audit logging.
272
+ # For example, `storage.googleapis.com`, `cloudsql.googleapis.com`.
273
+ # `allServices` is a special value that covers all services.
274
+ # @!attribute [rw] audit_log_configs
275
+ # @return [::Array<::Google::Iam::V1::AuditLogConfig>]
276
+ # The configuration for logging of each type of permission.
277
+ class AuditConfig
278
+ include ::Google::Protobuf::MessageExts
279
+ extend ::Google::Protobuf::MessageExts::ClassMethods
280
+ end
281
+
282
+ # Provides the configuration for logging a type of permissions.
283
+ # Example:
284
+ #
285
+ # {
286
+ # "audit_log_configs": [
287
+ # {
288
+ # "log_type": "DATA_READ",
289
+ # "exempted_members": [
290
+ # "user:jose@example.com"
291
+ # ]
292
+ # },
293
+ # {
294
+ # "log_type": "DATA_WRITE"
295
+ # }
296
+ # ]
297
+ # }
298
+ #
299
+ # This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting
300
+ # jose@example.com from DATA_READ logging.
301
+ # @!attribute [rw] log_type
302
+ # @return [::Google::Iam::V1::AuditLogConfig::LogType]
303
+ # The log type that this config enables.
304
+ # @!attribute [rw] exempted_members
305
+ # @return [::Array<::String>]
306
+ # Specifies the identities that do not cause logging for this type of
307
+ # permission.
308
+ # Follows the same format of {::Google::Iam::V1::Binding#members Binding.members}.
309
+ class AuditLogConfig
310
+ include ::Google::Protobuf::MessageExts
311
+ extend ::Google::Protobuf::MessageExts::ClassMethods
312
+
313
+ # The list of valid permission types for which logging can be configured.
314
+ # Admin writes are always logged, and are not configurable.
315
+ module LogType
316
+ # Default case. Should never be this.
317
+ LOG_TYPE_UNSPECIFIED = 0
318
+
319
+ # Admin reads. Example: CloudIAM getIamPolicy
320
+ ADMIN_READ = 1
321
+
322
+ # Data writes. Example: CloudSQL Users create
323
+ DATA_WRITE = 2
324
+
325
+ # Data reads. Example: CloudSQL Users list
326
+ DATA_READ = 3
327
+ end
328
+ end
329
+
160
330
  # The difference delta between two policies.
161
331
  # @!attribute [rw] binding_deltas
162
332
  # @return [::Array<::Google::Iam::V1::BindingDelta>]
@@ -44,7 +44,7 @@ module Google
44
44
  # foo = any.unpack(Foo.class);
45
45
  # }
46
46
  #
47
- # Example 3: Pack and unpack a message in Python.
47
+ # Example 3: Pack and unpack a message in Python.
48
48
  #
49
49
  # foo = Foo(...)
50
50
  # any = Any()
@@ -54,7 +54,7 @@ module Google
54
54
  # any.Unpack(foo)
55
55
  # ...
56
56
  #
57
- # Example 4: Pack and unpack a message in Go
57
+ # Example 4: Pack and unpack a message in Go
58
58
  #
59
59
  # foo := &pb.Foo{...}
60
60
  # any, err := anypb.New(foo)
@@ -75,7 +75,7 @@ module Google
75
75
  #
76
76
  #
77
77
  # JSON
78
- # ====
78
+ #
79
79
  # The JSON representation of an `Any` value uses the regular
80
80
  # representation of the deserialized, embedded message, with an
81
81
  # additional field `@type` which contains the type URL. Example:
@@ -46,8 +46,8 @@ module Google
46
46
 
47
47
  # `Value` represents a dynamically typed value which can be either
48
48
  # null, a number, a string, a boolean, a recursive struct value, or a
49
- # list of values. A producer of value is expected to set one of that
50
- # variants, absence of any variant indicates an error.
49
+ # list of values. A producer of value is expected to set one of these
50
+ # variants. Absence of any variant indicates an error.
51
51
  #
52
52
  # The JSON representation for `Value` is JSON value.
53
53
  # @!attribute [rw] null_value