google-apis-securitycenter_v1 0.109.0 → 0.111.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cebb6572a07e6bc18fb6a9d79d6fba10c25b2f41fca7b1d88aaf4e30c674e4a2
|
|
4
|
+
data.tar.gz: be9d5d0f484516284239ce1eae576c4ade2dbc1ce71f90d05456ea1f50ea16da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aaa7c0ad6d529939272e0b2bc52491da6bc0e2b7218245f1ea644c30329057540ab0c116d793a46d7a8613b564faf71d786c6a0a1cb34e5586abf9a3333b193d
|
|
7
|
+
data.tar.gz: '039763cb3fc95d2f9e8bbc960a54a96df7e87bb76e8726b7ae83a3a379a5ea0b15a1f06da7a3f30da9d136b7ef857bb35f6e42f8868dfce3f9b6756c3eed00b7'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-securitycenter_v1
|
|
2
2
|
|
|
3
|
+
### v0.111.0 (2025-12-07)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251202
|
|
6
|
+
|
|
7
|
+
### v0.110.0 (2025-10-26)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251017
|
|
10
|
+
|
|
3
11
|
### v0.109.0 (2025-10-12)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251006
|
|
@@ -269,6 +269,11 @@ module Google
|
|
|
269
269
|
# @return [String]
|
|
270
270
|
attr_accessor :publisher
|
|
271
271
|
|
|
272
|
+
# The purpose of the model, for example, "Inteference" or "Training".
|
|
273
|
+
# Corresponds to the JSON property `usageCategory`
|
|
274
|
+
# @return [String]
|
|
275
|
+
attr_accessor :usage_category
|
|
276
|
+
|
|
272
277
|
def initialize(**args)
|
|
273
278
|
update!(**args)
|
|
274
279
|
end
|
|
@@ -282,6 +287,7 @@ module Google
|
|
|
282
287
|
@location = args[:location] if args.key?(:location)
|
|
283
288
|
@name = args[:name] if args.key?(:name)
|
|
284
289
|
@publisher = args[:publisher] if args.key?(:publisher)
|
|
290
|
+
@usage_category = args[:usage_category] if args.key?(:usage_category)
|
|
285
291
|
end
|
|
286
292
|
end
|
|
287
293
|
|
|
@@ -4035,6 +4041,11 @@ module Google
|
|
|
4035
4041
|
class GoogleCloudSecuritycenterV1Resource
|
|
4036
4042
|
include Google::Apis::Core::Hashable
|
|
4037
4043
|
|
|
4044
|
+
# The App Hub Application associated with the finding's resource.
|
|
4045
|
+
# Corresponds to the JSON property `application`
|
|
4046
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplication]
|
|
4047
|
+
attr_accessor :application
|
|
4048
|
+
|
|
4038
4049
|
# AWS metadata associated with the resource, only applicable if the finding's
|
|
4039
4050
|
# cloud provider is Amazon Web Services.
|
|
4040
4051
|
# Corresponds to the JSON property `awsMetadata`
|
|
@@ -4137,6 +4148,7 @@ module Google
|
|
|
4137
4148
|
|
|
4138
4149
|
# Update properties of this object
|
|
4139
4150
|
def update!(**args)
|
|
4151
|
+
@application = args[:application] if args.key?(:application)
|
|
4140
4152
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
|
4141
4153
|
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
|
4142
4154
|
@cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
|
|
@@ -4156,6 +4168,132 @@ module Google
|
|
|
4156
4168
|
end
|
|
4157
4169
|
end
|
|
4158
4170
|
|
|
4171
|
+
# The App Hub Application associated with the finding's resource.
|
|
4172
|
+
class GoogleCloudSecuritycenterV1ResourceApplication
|
|
4173
|
+
include Google::Apis::Core::Hashable
|
|
4174
|
+
|
|
4175
|
+
# Consumer provided attributes for the application
|
|
4176
|
+
# Corresponds to the JSON property `attributes`
|
|
4177
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributes]
|
|
4178
|
+
attr_accessor :attributes
|
|
4179
|
+
|
|
4180
|
+
# The resource name of an Application. Format: `projects/`host-project-id`/
|
|
4181
|
+
# locations/`location`/applications/`application-id``
|
|
4182
|
+
# Corresponds to the JSON property `name`
|
|
4183
|
+
# @return [String]
|
|
4184
|
+
attr_accessor :name
|
|
4185
|
+
|
|
4186
|
+
def initialize(**args)
|
|
4187
|
+
update!(**args)
|
|
4188
|
+
end
|
|
4189
|
+
|
|
4190
|
+
# Update properties of this object
|
|
4191
|
+
def update!(**args)
|
|
4192
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
|
4193
|
+
@name = args[:name] if args.key?(:name)
|
|
4194
|
+
end
|
|
4195
|
+
end
|
|
4196
|
+
|
|
4197
|
+
# Consumer provided attributes for the application
|
|
4198
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributes
|
|
4199
|
+
include Google::Apis::Core::Hashable
|
|
4200
|
+
|
|
4201
|
+
# Business team that ensures user needs are met and value is delivered
|
|
4202
|
+
# Corresponds to the JSON property `businessOwners`
|
|
4203
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo>]
|
|
4204
|
+
attr_accessor :business_owners
|
|
4205
|
+
|
|
4206
|
+
# Criticality of the Application, Service, or Workload
|
|
4207
|
+
# Corresponds to the JSON property `criticality`
|
|
4208
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality]
|
|
4209
|
+
attr_accessor :criticality
|
|
4210
|
+
|
|
4211
|
+
# Developer team that owns development and coding.
|
|
4212
|
+
# Corresponds to the JSON property `developerOwners`
|
|
4213
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo>]
|
|
4214
|
+
attr_accessor :developer_owners
|
|
4215
|
+
|
|
4216
|
+
# Environment of the Application, Service, or Workload
|
|
4217
|
+
# Corresponds to the JSON property `environment`
|
|
4218
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment]
|
|
4219
|
+
attr_accessor :environment
|
|
4220
|
+
|
|
4221
|
+
# Operator team that ensures runtime and operations.
|
|
4222
|
+
# Corresponds to the JSON property `operatorOwners`
|
|
4223
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo>]
|
|
4224
|
+
attr_accessor :operator_owners
|
|
4225
|
+
|
|
4226
|
+
def initialize(**args)
|
|
4227
|
+
update!(**args)
|
|
4228
|
+
end
|
|
4229
|
+
|
|
4230
|
+
# Update properties of this object
|
|
4231
|
+
def update!(**args)
|
|
4232
|
+
@business_owners = args[:business_owners] if args.key?(:business_owners)
|
|
4233
|
+
@criticality = args[:criticality] if args.key?(:criticality)
|
|
4234
|
+
@developer_owners = args[:developer_owners] if args.key?(:developer_owners)
|
|
4235
|
+
@environment = args[:environment] if args.key?(:environment)
|
|
4236
|
+
@operator_owners = args[:operator_owners] if args.key?(:operator_owners)
|
|
4237
|
+
end
|
|
4238
|
+
end
|
|
4239
|
+
|
|
4240
|
+
# Contact information of stakeholders.
|
|
4241
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo
|
|
4242
|
+
include Google::Apis::Core::Hashable
|
|
4243
|
+
|
|
4244
|
+
# Email address of the contacts.
|
|
4245
|
+
# Corresponds to the JSON property `email`
|
|
4246
|
+
# @return [String]
|
|
4247
|
+
attr_accessor :email
|
|
4248
|
+
|
|
4249
|
+
def initialize(**args)
|
|
4250
|
+
update!(**args)
|
|
4251
|
+
end
|
|
4252
|
+
|
|
4253
|
+
# Update properties of this object
|
|
4254
|
+
def update!(**args)
|
|
4255
|
+
@email = args[:email] if args.key?(:email)
|
|
4256
|
+
end
|
|
4257
|
+
end
|
|
4258
|
+
|
|
4259
|
+
# Criticality of the Application, Service, or Workload
|
|
4260
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality
|
|
4261
|
+
include Google::Apis::Core::Hashable
|
|
4262
|
+
|
|
4263
|
+
# Criticality Type.
|
|
4264
|
+
# Corresponds to the JSON property `type`
|
|
4265
|
+
# @return [String]
|
|
4266
|
+
attr_accessor :type
|
|
4267
|
+
|
|
4268
|
+
def initialize(**args)
|
|
4269
|
+
update!(**args)
|
|
4270
|
+
end
|
|
4271
|
+
|
|
4272
|
+
# Update properties of this object
|
|
4273
|
+
def update!(**args)
|
|
4274
|
+
@type = args[:type] if args.key?(:type)
|
|
4275
|
+
end
|
|
4276
|
+
end
|
|
4277
|
+
|
|
4278
|
+
# Environment of the Application, Service, or Workload
|
|
4279
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment
|
|
4280
|
+
include Google::Apis::Core::Hashable
|
|
4281
|
+
|
|
4282
|
+
# Environment Type.
|
|
4283
|
+
# Corresponds to the JSON property `type`
|
|
4284
|
+
# @return [String]
|
|
4285
|
+
attr_accessor :type
|
|
4286
|
+
|
|
4287
|
+
def initialize(**args)
|
|
4288
|
+
update!(**args)
|
|
4289
|
+
end
|
|
4290
|
+
|
|
4291
|
+
# Update properties of this object
|
|
4292
|
+
def update!(**args)
|
|
4293
|
+
@type = args[:type] if args.key?(:type)
|
|
4294
|
+
end
|
|
4295
|
+
end
|
|
4296
|
+
|
|
4159
4297
|
# Resource for selecting resource type.
|
|
4160
4298
|
class GoogleCloudSecuritycenterV1ResourceSelector
|
|
4161
4299
|
include Google::Apis::Core::Hashable
|
|
@@ -4973,6 +5111,11 @@ module Google
|
|
|
4973
5111
|
# @return [String]
|
|
4974
5112
|
attr_accessor :publisher
|
|
4975
5113
|
|
|
5114
|
+
# The purpose of the model, for example, "Inteference" or "Training".
|
|
5115
|
+
# Corresponds to the JSON property `usageCategory`
|
|
5116
|
+
# @return [String]
|
|
5117
|
+
attr_accessor :usage_category
|
|
5118
|
+
|
|
4976
5119
|
def initialize(**args)
|
|
4977
5120
|
update!(**args)
|
|
4978
5121
|
end
|
|
@@ -4986,6 +5129,7 @@ module Google
|
|
|
4986
5129
|
@location = args[:location] if args.key?(:location)
|
|
4987
5130
|
@name = args[:name] if args.key?(:name)
|
|
4988
5131
|
@publisher = args[:publisher] if args.key?(:publisher)
|
|
5132
|
+
@usage_category = args[:usage_category] if args.key?(:usage_category)
|
|
4989
5133
|
end
|
|
4990
5134
|
end
|
|
4991
5135
|
|
|
@@ -7993,6 +8137,11 @@ module Google
|
|
|
7993
8137
|
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
|
7994
8138
|
include Google::Apis::Core::Hashable
|
|
7995
8139
|
|
|
8140
|
+
# Consumer provided attributes for the application
|
|
8141
|
+
# Corresponds to the JSON property `attributes`
|
|
8142
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes]
|
|
8143
|
+
attr_accessor :attributes
|
|
8144
|
+
|
|
7996
8145
|
# The resource name of an Application. Format: `projects/`host-project-id`/
|
|
7997
8146
|
# locations/`location`/applications/`application-id``
|
|
7998
8147
|
# Corresponds to the JSON property `name`
|
|
@@ -8005,10 +8154,111 @@ module Google
|
|
|
8005
8154
|
|
|
8006
8155
|
# Update properties of this object
|
|
8007
8156
|
def update!(**args)
|
|
8157
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
|
8008
8158
|
@name = args[:name] if args.key?(:name)
|
|
8009
8159
|
end
|
|
8010
8160
|
end
|
|
8011
8161
|
|
|
8162
|
+
# Consumer provided attributes for the application
|
|
8163
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
|
|
8164
|
+
include Google::Apis::Core::Hashable
|
|
8165
|
+
|
|
8166
|
+
# Business team that ensures user needs are met and value is delivered
|
|
8167
|
+
# Corresponds to the JSON property `businessOwners`
|
|
8168
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
|
|
8169
|
+
attr_accessor :business_owners
|
|
8170
|
+
|
|
8171
|
+
# Criticality of the Application, Service, or Workload
|
|
8172
|
+
# Corresponds to the JSON property `criticality`
|
|
8173
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality]
|
|
8174
|
+
attr_accessor :criticality
|
|
8175
|
+
|
|
8176
|
+
# Developer team that owns development and coding.
|
|
8177
|
+
# Corresponds to the JSON property `developerOwners`
|
|
8178
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
|
|
8179
|
+
attr_accessor :developer_owners
|
|
8180
|
+
|
|
8181
|
+
# Environment of the Application, Service, or Workload
|
|
8182
|
+
# Corresponds to the JSON property `environment`
|
|
8183
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment]
|
|
8184
|
+
attr_accessor :environment
|
|
8185
|
+
|
|
8186
|
+
# Operator team that ensures runtime and operations.
|
|
8187
|
+
# Corresponds to the JSON property `operatorOwners`
|
|
8188
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
|
|
8189
|
+
attr_accessor :operator_owners
|
|
8190
|
+
|
|
8191
|
+
def initialize(**args)
|
|
8192
|
+
update!(**args)
|
|
8193
|
+
end
|
|
8194
|
+
|
|
8195
|
+
# Update properties of this object
|
|
8196
|
+
def update!(**args)
|
|
8197
|
+
@business_owners = args[:business_owners] if args.key?(:business_owners)
|
|
8198
|
+
@criticality = args[:criticality] if args.key?(:criticality)
|
|
8199
|
+
@developer_owners = args[:developer_owners] if args.key?(:developer_owners)
|
|
8200
|
+
@environment = args[:environment] if args.key?(:environment)
|
|
8201
|
+
@operator_owners = args[:operator_owners] if args.key?(:operator_owners)
|
|
8202
|
+
end
|
|
8203
|
+
end
|
|
8204
|
+
|
|
8205
|
+
# Contact information of stakeholders.
|
|
8206
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
|
|
8207
|
+
include Google::Apis::Core::Hashable
|
|
8208
|
+
|
|
8209
|
+
# Email address of the contacts.
|
|
8210
|
+
# Corresponds to the JSON property `email`
|
|
8211
|
+
# @return [String]
|
|
8212
|
+
attr_accessor :email
|
|
8213
|
+
|
|
8214
|
+
def initialize(**args)
|
|
8215
|
+
update!(**args)
|
|
8216
|
+
end
|
|
8217
|
+
|
|
8218
|
+
# Update properties of this object
|
|
8219
|
+
def update!(**args)
|
|
8220
|
+
@email = args[:email] if args.key?(:email)
|
|
8221
|
+
end
|
|
8222
|
+
end
|
|
8223
|
+
|
|
8224
|
+
# Criticality of the Application, Service, or Workload
|
|
8225
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
|
|
8226
|
+
include Google::Apis::Core::Hashable
|
|
8227
|
+
|
|
8228
|
+
# Criticality Type.
|
|
8229
|
+
# Corresponds to the JSON property `type`
|
|
8230
|
+
# @return [String]
|
|
8231
|
+
attr_accessor :type
|
|
8232
|
+
|
|
8233
|
+
def initialize(**args)
|
|
8234
|
+
update!(**args)
|
|
8235
|
+
end
|
|
8236
|
+
|
|
8237
|
+
# Update properties of this object
|
|
8238
|
+
def update!(**args)
|
|
8239
|
+
@type = args[:type] if args.key?(:type)
|
|
8240
|
+
end
|
|
8241
|
+
end
|
|
8242
|
+
|
|
8243
|
+
# Environment of the Application, Service, or Workload
|
|
8244
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
|
|
8245
|
+
include Google::Apis::Core::Hashable
|
|
8246
|
+
|
|
8247
|
+
# Environment Type.
|
|
8248
|
+
# Corresponds to the JSON property `type`
|
|
8249
|
+
# @return [String]
|
|
8250
|
+
attr_accessor :type
|
|
8251
|
+
|
|
8252
|
+
def initialize(**args)
|
|
8253
|
+
update!(**args)
|
|
8254
|
+
end
|
|
8255
|
+
|
|
8256
|
+
# Update properties of this object
|
|
8257
|
+
def update!(**args)
|
|
8258
|
+
@type = args[:type] if args.key?(:type)
|
|
8259
|
+
end
|
|
8260
|
+
end
|
|
8261
|
+
|
|
8012
8262
|
# The AWS metadata of a resource associated with an issue.
|
|
8013
8263
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
|
8014
8264
|
include Google::Apis::Core::Hashable
|
|
@@ -9190,6 +9440,11 @@ module Google
|
|
|
9190
9440
|
class GoogleCloudSecuritycenterV2Resource
|
|
9191
9441
|
include Google::Apis::Core::Hashable
|
|
9192
9442
|
|
|
9443
|
+
# The App Hub Application associated with the finding's resource.
|
|
9444
|
+
# Corresponds to the JSON property `application`
|
|
9445
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplication]
|
|
9446
|
+
attr_accessor :application
|
|
9447
|
+
|
|
9193
9448
|
# AWS metadata associated with the resource, only applicable if the finding's
|
|
9194
9449
|
# cloud provider is Amazon Web Services.
|
|
9195
9450
|
# Corresponds to the JSON property `awsMetadata`
|
|
@@ -9264,6 +9519,7 @@ module Google
|
|
|
9264
9519
|
|
|
9265
9520
|
# Update properties of this object
|
|
9266
9521
|
def update!(**args)
|
|
9522
|
+
@application = args[:application] if args.key?(:application)
|
|
9267
9523
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
|
9268
9524
|
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
|
9269
9525
|
@cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
|
|
@@ -9278,6 +9534,132 @@ module Google
|
|
|
9278
9534
|
end
|
|
9279
9535
|
end
|
|
9280
9536
|
|
|
9537
|
+
# The App Hub Application associated with the finding's resource.
|
|
9538
|
+
class GoogleCloudSecuritycenterV2ResourceApplication
|
|
9539
|
+
include Google::Apis::Core::Hashable
|
|
9540
|
+
|
|
9541
|
+
# Consumer provided attributes for the application
|
|
9542
|
+
# Corresponds to the JSON property `attributes`
|
|
9543
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributes]
|
|
9544
|
+
attr_accessor :attributes
|
|
9545
|
+
|
|
9546
|
+
# The resource name of an Application. Format: `projects/`host-project-id`/
|
|
9547
|
+
# locations/`location`/applications/`application-id``
|
|
9548
|
+
# Corresponds to the JSON property `name`
|
|
9549
|
+
# @return [String]
|
|
9550
|
+
attr_accessor :name
|
|
9551
|
+
|
|
9552
|
+
def initialize(**args)
|
|
9553
|
+
update!(**args)
|
|
9554
|
+
end
|
|
9555
|
+
|
|
9556
|
+
# Update properties of this object
|
|
9557
|
+
def update!(**args)
|
|
9558
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
|
9559
|
+
@name = args[:name] if args.key?(:name)
|
|
9560
|
+
end
|
|
9561
|
+
end
|
|
9562
|
+
|
|
9563
|
+
# Consumer provided attributes for the application
|
|
9564
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributes
|
|
9565
|
+
include Google::Apis::Core::Hashable
|
|
9566
|
+
|
|
9567
|
+
# Business team that ensures user needs are met and value is delivered
|
|
9568
|
+
# Corresponds to the JSON property `businessOwners`
|
|
9569
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo>]
|
|
9570
|
+
attr_accessor :business_owners
|
|
9571
|
+
|
|
9572
|
+
# Criticality of the Application, Service, or Workload
|
|
9573
|
+
# Corresponds to the JSON property `criticality`
|
|
9574
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality]
|
|
9575
|
+
attr_accessor :criticality
|
|
9576
|
+
|
|
9577
|
+
# Developer team that owns development and coding.
|
|
9578
|
+
# Corresponds to the JSON property `developerOwners`
|
|
9579
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo>]
|
|
9580
|
+
attr_accessor :developer_owners
|
|
9581
|
+
|
|
9582
|
+
# Environment of the Application, Service, or Workload
|
|
9583
|
+
# Corresponds to the JSON property `environment`
|
|
9584
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment]
|
|
9585
|
+
attr_accessor :environment
|
|
9586
|
+
|
|
9587
|
+
# Operator team that ensures runtime and operations.
|
|
9588
|
+
# Corresponds to the JSON property `operatorOwners`
|
|
9589
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo>]
|
|
9590
|
+
attr_accessor :operator_owners
|
|
9591
|
+
|
|
9592
|
+
def initialize(**args)
|
|
9593
|
+
update!(**args)
|
|
9594
|
+
end
|
|
9595
|
+
|
|
9596
|
+
# Update properties of this object
|
|
9597
|
+
def update!(**args)
|
|
9598
|
+
@business_owners = args[:business_owners] if args.key?(:business_owners)
|
|
9599
|
+
@criticality = args[:criticality] if args.key?(:criticality)
|
|
9600
|
+
@developer_owners = args[:developer_owners] if args.key?(:developer_owners)
|
|
9601
|
+
@environment = args[:environment] if args.key?(:environment)
|
|
9602
|
+
@operator_owners = args[:operator_owners] if args.key?(:operator_owners)
|
|
9603
|
+
end
|
|
9604
|
+
end
|
|
9605
|
+
|
|
9606
|
+
# Contact information of stakeholders.
|
|
9607
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo
|
|
9608
|
+
include Google::Apis::Core::Hashable
|
|
9609
|
+
|
|
9610
|
+
# Email address of the contacts.
|
|
9611
|
+
# Corresponds to the JSON property `email`
|
|
9612
|
+
# @return [String]
|
|
9613
|
+
attr_accessor :email
|
|
9614
|
+
|
|
9615
|
+
def initialize(**args)
|
|
9616
|
+
update!(**args)
|
|
9617
|
+
end
|
|
9618
|
+
|
|
9619
|
+
# Update properties of this object
|
|
9620
|
+
def update!(**args)
|
|
9621
|
+
@email = args[:email] if args.key?(:email)
|
|
9622
|
+
end
|
|
9623
|
+
end
|
|
9624
|
+
|
|
9625
|
+
# Criticality of the Application, Service, or Workload
|
|
9626
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality
|
|
9627
|
+
include Google::Apis::Core::Hashable
|
|
9628
|
+
|
|
9629
|
+
# Criticality Type.
|
|
9630
|
+
# Corresponds to the JSON property `type`
|
|
9631
|
+
# @return [String]
|
|
9632
|
+
attr_accessor :type
|
|
9633
|
+
|
|
9634
|
+
def initialize(**args)
|
|
9635
|
+
update!(**args)
|
|
9636
|
+
end
|
|
9637
|
+
|
|
9638
|
+
# Update properties of this object
|
|
9639
|
+
def update!(**args)
|
|
9640
|
+
@type = args[:type] if args.key?(:type)
|
|
9641
|
+
end
|
|
9642
|
+
end
|
|
9643
|
+
|
|
9644
|
+
# Environment of the Application, Service, or Workload
|
|
9645
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment
|
|
9646
|
+
include Google::Apis::Core::Hashable
|
|
9647
|
+
|
|
9648
|
+
# Environment Type.
|
|
9649
|
+
# Corresponds to the JSON property `type`
|
|
9650
|
+
# @return [String]
|
|
9651
|
+
attr_accessor :type
|
|
9652
|
+
|
|
9653
|
+
def initialize(**args)
|
|
9654
|
+
update!(**args)
|
|
9655
|
+
end
|
|
9656
|
+
|
|
9657
|
+
# Update properties of this object
|
|
9658
|
+
def update!(**args)
|
|
9659
|
+
@type = args[:type] if args.key?(:type)
|
|
9660
|
+
end
|
|
9661
|
+
end
|
|
9662
|
+
|
|
9281
9663
|
# Represents the path of resources leading up to the resource this finding is
|
|
9282
9664
|
# about.
|
|
9283
9665
|
class GoogleCloudSecuritycenterV2ResourcePath
|
|
@@ -11134,8 +11516,9 @@ module Google
|
|
|
11134
11516
|
attr_accessor :operations
|
|
11135
11517
|
|
|
11136
11518
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
11137
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
11138
|
-
# when attempting to list all resources across all supported
|
|
11519
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
11520
|
+
# For example, when attempting to list all resources across all supported
|
|
11521
|
+
# locations.
|
|
11139
11522
|
# Corresponds to the JSON property `unreachable`
|
|
11140
11523
|
# @return [Array<String>]
|
|
11141
11524
|
attr_accessor :unreachable
|
|
@@ -12225,6 +12608,11 @@ module Google
|
|
|
12225
12608
|
class Resource
|
|
12226
12609
|
include Google::Apis::Core::Hashable
|
|
12227
12610
|
|
|
12611
|
+
# The App Hub Application associated with the finding's resource.
|
|
12612
|
+
# Corresponds to the JSON property `application`
|
|
12613
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplication]
|
|
12614
|
+
attr_accessor :application
|
|
12615
|
+
|
|
12228
12616
|
# AWS metadata associated with the resource, only applicable if the finding's
|
|
12229
12617
|
# cloud provider is Amazon Web Services.
|
|
12230
12618
|
# Corresponds to the JSON property `awsMetadata`
|
|
@@ -12324,6 +12712,7 @@ module Google
|
|
|
12324
12712
|
|
|
12325
12713
|
# Update properties of this object
|
|
12326
12714
|
def update!(**args)
|
|
12715
|
+
@application = args[:application] if args.key?(:application)
|
|
12327
12716
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
|
12328
12717
|
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
|
12329
12718
|
@cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module SecuritycenterV1
|
|
18
18
|
# Version of the google-apis-securitycenter_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.111.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251202"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -562,6 +562,36 @@ module Google
|
|
|
562
562
|
include Google::Apis::Core::JsonObjectSupport
|
|
563
563
|
end
|
|
564
564
|
|
|
565
|
+
class GoogleCloudSecuritycenterV1ResourceApplication
|
|
566
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
567
|
+
|
|
568
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
569
|
+
end
|
|
570
|
+
|
|
571
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributes
|
|
572
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
573
|
+
|
|
574
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
575
|
+
end
|
|
576
|
+
|
|
577
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo
|
|
578
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
579
|
+
|
|
580
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
581
|
+
end
|
|
582
|
+
|
|
583
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality
|
|
584
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
585
|
+
|
|
586
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
587
|
+
end
|
|
588
|
+
|
|
589
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment
|
|
590
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
591
|
+
|
|
592
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
593
|
+
end
|
|
594
|
+
|
|
565
595
|
class GoogleCloudSecuritycenterV1ResourceSelector
|
|
566
596
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
567
597
|
|
|
@@ -1066,6 +1096,30 @@ module Google
|
|
|
1066
1096
|
include Google::Apis::Core::JsonObjectSupport
|
|
1067
1097
|
end
|
|
1068
1098
|
|
|
1099
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
|
|
1100
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1101
|
+
|
|
1102
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1103
|
+
end
|
|
1104
|
+
|
|
1105
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
|
|
1106
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1107
|
+
|
|
1108
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1109
|
+
end
|
|
1110
|
+
|
|
1111
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
|
|
1112
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1113
|
+
|
|
1114
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1115
|
+
end
|
|
1116
|
+
|
|
1117
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
|
|
1118
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1119
|
+
|
|
1120
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1121
|
+
end
|
|
1122
|
+
|
|
1069
1123
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
|
1070
1124
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1071
1125
|
|
|
@@ -1276,6 +1330,36 @@ module Google
|
|
|
1276
1330
|
include Google::Apis::Core::JsonObjectSupport
|
|
1277
1331
|
end
|
|
1278
1332
|
|
|
1333
|
+
class GoogleCloudSecuritycenterV2ResourceApplication
|
|
1334
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1335
|
+
|
|
1336
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1337
|
+
end
|
|
1338
|
+
|
|
1339
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributes
|
|
1340
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1341
|
+
|
|
1342
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1343
|
+
end
|
|
1344
|
+
|
|
1345
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo
|
|
1346
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1347
|
+
|
|
1348
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1349
|
+
end
|
|
1350
|
+
|
|
1351
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality
|
|
1352
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1353
|
+
|
|
1354
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1355
|
+
end
|
|
1356
|
+
|
|
1357
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment
|
|
1358
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1359
|
+
|
|
1360
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1361
|
+
end
|
|
1362
|
+
|
|
1279
1363
|
class GoogleCloudSecuritycenterV2ResourcePath
|
|
1280
1364
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1281
1365
|
|
|
@@ -2028,6 +2112,7 @@ module Google
|
|
|
2028
2112
|
property :location, as: 'location'
|
|
2029
2113
|
property :name, as: 'name'
|
|
2030
2114
|
property :publisher, as: 'publisher'
|
|
2115
|
+
property :usage_category, as: 'usageCategory'
|
|
2031
2116
|
end
|
|
2032
2117
|
end
|
|
2033
2118
|
|
|
@@ -2987,6 +3072,8 @@ module Google
|
|
|
2987
3072
|
class GoogleCloudSecuritycenterV1Resource
|
|
2988
3073
|
# @private
|
|
2989
3074
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3075
|
+
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplication, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplication::Representation
|
|
3076
|
+
|
|
2990
3077
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1::AwsMetadata, decorator: Google::Apis::SecuritycenterV1::AwsMetadata::Representation
|
|
2991
3078
|
|
|
2992
3079
|
property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1::AzureMetadata, decorator: Google::Apis::SecuritycenterV1::AzureMetadata::Representation
|
|
@@ -3010,6 +3097,52 @@ module Google
|
|
|
3010
3097
|
end
|
|
3011
3098
|
end
|
|
3012
3099
|
|
|
3100
|
+
class GoogleCloudSecuritycenterV1ResourceApplication
|
|
3101
|
+
# @private
|
|
3102
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3103
|
+
property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributes::Representation
|
|
3104
|
+
|
|
3105
|
+
property :name, as: 'name'
|
|
3106
|
+
end
|
|
3107
|
+
end
|
|
3108
|
+
|
|
3109
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributes
|
|
3110
|
+
# @private
|
|
3111
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3112
|
+
collection :business_owners, as: 'businessOwners', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo::Representation
|
|
3113
|
+
|
|
3114
|
+
property :criticality, as: 'criticality', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality::Representation
|
|
3115
|
+
|
|
3116
|
+
collection :developer_owners, as: 'developerOwners', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo::Representation
|
|
3117
|
+
|
|
3118
|
+
property :environment, as: 'environment', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment::Representation
|
|
3119
|
+
|
|
3120
|
+
collection :operator_owners, as: 'operatorOwners', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo::Representation
|
|
3121
|
+
|
|
3122
|
+
end
|
|
3123
|
+
end
|
|
3124
|
+
|
|
3125
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo
|
|
3126
|
+
# @private
|
|
3127
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3128
|
+
property :email, as: 'email'
|
|
3129
|
+
end
|
|
3130
|
+
end
|
|
3131
|
+
|
|
3132
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality
|
|
3133
|
+
# @private
|
|
3134
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3135
|
+
property :type, as: 'type'
|
|
3136
|
+
end
|
|
3137
|
+
end
|
|
3138
|
+
|
|
3139
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment
|
|
3140
|
+
# @private
|
|
3141
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3142
|
+
property :type, as: 'type'
|
|
3143
|
+
end
|
|
3144
|
+
end
|
|
3145
|
+
|
|
3013
3146
|
class GoogleCloudSecuritycenterV1ResourceSelector
|
|
3014
3147
|
# @private
|
|
3015
3148
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3198,6 +3331,7 @@ module Google
|
|
|
3198
3331
|
property :location, as: 'location'
|
|
3199
3332
|
property :name, as: 'name'
|
|
3200
3333
|
property :publisher, as: 'publisher'
|
|
3334
|
+
property :usage_category, as: 'usageCategory'
|
|
3201
3335
|
end
|
|
3202
3336
|
end
|
|
3203
3337
|
|
|
@@ -3993,10 +4127,49 @@ module Google
|
|
|
3993
4127
|
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
|
3994
4128
|
# @private
|
|
3995
4129
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4130
|
+
property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes::Representation
|
|
4131
|
+
|
|
3996
4132
|
property :name, as: 'name'
|
|
3997
4133
|
end
|
|
3998
4134
|
end
|
|
3999
4135
|
|
|
4136
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
|
|
4137
|
+
# @private
|
|
4138
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4139
|
+
collection :business_owners, as: 'businessOwners', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
|
|
4140
|
+
|
|
4141
|
+
property :criticality, as: 'criticality', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality::Representation
|
|
4142
|
+
|
|
4143
|
+
collection :developer_owners, as: 'developerOwners', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
|
|
4144
|
+
|
|
4145
|
+
property :environment, as: 'environment', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment::Representation
|
|
4146
|
+
|
|
4147
|
+
collection :operator_owners, as: 'operatorOwners', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
|
|
4148
|
+
|
|
4149
|
+
end
|
|
4150
|
+
end
|
|
4151
|
+
|
|
4152
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
|
|
4153
|
+
# @private
|
|
4154
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4155
|
+
property :email, as: 'email'
|
|
4156
|
+
end
|
|
4157
|
+
end
|
|
4158
|
+
|
|
4159
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
|
|
4160
|
+
# @private
|
|
4161
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4162
|
+
property :type, as: 'type'
|
|
4163
|
+
end
|
|
4164
|
+
end
|
|
4165
|
+
|
|
4166
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
|
|
4167
|
+
# @private
|
|
4168
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4169
|
+
property :type, as: 'type'
|
|
4170
|
+
end
|
|
4171
|
+
end
|
|
4172
|
+
|
|
4000
4173
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
|
4001
4174
|
# @private
|
|
4002
4175
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4338,6 +4511,8 @@ module Google
|
|
|
4338
4511
|
class GoogleCloudSecuritycenterV2Resource
|
|
4339
4512
|
# @private
|
|
4340
4513
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4514
|
+
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplication, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplication::Representation
|
|
4515
|
+
|
|
4341
4516
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AwsMetadata, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AwsMetadata::Representation
|
|
4342
4517
|
|
|
4343
4518
|
property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AzureMetadata, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AzureMetadata::Representation
|
|
@@ -4356,6 +4531,52 @@ module Google
|
|
|
4356
4531
|
end
|
|
4357
4532
|
end
|
|
4358
4533
|
|
|
4534
|
+
class GoogleCloudSecuritycenterV2ResourceApplication
|
|
4535
|
+
# @private
|
|
4536
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4537
|
+
property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributes::Representation
|
|
4538
|
+
|
|
4539
|
+
property :name, as: 'name'
|
|
4540
|
+
end
|
|
4541
|
+
end
|
|
4542
|
+
|
|
4543
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributes
|
|
4544
|
+
# @private
|
|
4545
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4546
|
+
collection :business_owners, as: 'businessOwners', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo::Representation
|
|
4547
|
+
|
|
4548
|
+
property :criticality, as: 'criticality', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality::Representation
|
|
4549
|
+
|
|
4550
|
+
collection :developer_owners, as: 'developerOwners', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo::Representation
|
|
4551
|
+
|
|
4552
|
+
property :environment, as: 'environment', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment::Representation
|
|
4553
|
+
|
|
4554
|
+
collection :operator_owners, as: 'operatorOwners', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo::Representation
|
|
4555
|
+
|
|
4556
|
+
end
|
|
4557
|
+
end
|
|
4558
|
+
|
|
4559
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo
|
|
4560
|
+
# @private
|
|
4561
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4562
|
+
property :email, as: 'email'
|
|
4563
|
+
end
|
|
4564
|
+
end
|
|
4565
|
+
|
|
4566
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality
|
|
4567
|
+
# @private
|
|
4568
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4569
|
+
property :type, as: 'type'
|
|
4570
|
+
end
|
|
4571
|
+
end
|
|
4572
|
+
|
|
4573
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment
|
|
4574
|
+
# @private
|
|
4575
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4576
|
+
property :type, as: 'type'
|
|
4577
|
+
end
|
|
4578
|
+
end
|
|
4579
|
+
|
|
4359
4580
|
class GoogleCloudSecuritycenterV2ResourcePath
|
|
4360
4581
|
# @private
|
|
4361
4582
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -5142,6 +5363,8 @@ module Google
|
|
|
5142
5363
|
class Resource
|
|
5143
5364
|
# @private
|
|
5144
5365
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5366
|
+
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplication, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplication::Representation
|
|
5367
|
+
|
|
5145
5368
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1::AwsMetadata, decorator: Google::Apis::SecuritycenterV1::AwsMetadata::Representation
|
|
5146
5369
|
|
|
5147
5370
|
property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1::AzureMetadata, decorator: Google::Apis::SecuritycenterV1::AzureMetadata::Representation
|
|
@@ -3649,11 +3649,12 @@ module Google
|
|
|
3649
3649
|
# The standard list page token.
|
|
3650
3650
|
# @param [Boolean] return_partial_success
|
|
3651
3651
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
3652
|
-
# those that are unreachable are returned in the
|
|
3653
|
-
# unreachable
|
|
3654
|
-
#
|
|
3655
|
-
# by default
|
|
3656
|
-
# explicitly documented otherwise in service or product specific
|
|
3652
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
3653
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
3654
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
3655
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
3656
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
3657
|
+
# documentation.
|
|
3657
3658
|
# @param [String] fields
|
|
3658
3659
|
# Selector specifying which fields to include in a partial response.
|
|
3659
3660
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-securitycenter_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.111.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.111.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|