google-apis-securitycenter_v1 0.110.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
|
@@ -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
|
|
|
@@ -9296,6 +9440,11 @@ module Google
|
|
|
9296
9440
|
class GoogleCloudSecuritycenterV2Resource
|
|
9297
9441
|
include Google::Apis::Core::Hashable
|
|
9298
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
|
+
|
|
9299
9448
|
# AWS metadata associated with the resource, only applicable if the finding's
|
|
9300
9449
|
# cloud provider is Amazon Web Services.
|
|
9301
9450
|
# Corresponds to the JSON property `awsMetadata`
|
|
@@ -9370,6 +9519,7 @@ module Google
|
|
|
9370
9519
|
|
|
9371
9520
|
# Update properties of this object
|
|
9372
9521
|
def update!(**args)
|
|
9522
|
+
@application = args[:application] if args.key?(:application)
|
|
9373
9523
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
|
9374
9524
|
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
|
9375
9525
|
@cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
|
|
@@ -9384,6 +9534,132 @@ module Google
|
|
|
9384
9534
|
end
|
|
9385
9535
|
end
|
|
9386
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
|
+
|
|
9387
9663
|
# Represents the path of resources leading up to the resource this finding is
|
|
9388
9664
|
# about.
|
|
9389
9665
|
class GoogleCloudSecuritycenterV2ResourcePath
|
|
@@ -11240,8 +11516,9 @@ module Google
|
|
|
11240
11516
|
attr_accessor :operations
|
|
11241
11517
|
|
|
11242
11518
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
11243
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
11244
|
-
# 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.
|
|
11245
11522
|
# Corresponds to the JSON property `unreachable`
|
|
11246
11523
|
# @return [Array<String>]
|
|
11247
11524
|
attr_accessor :unreachable
|
|
@@ -12331,6 +12608,11 @@ module Google
|
|
|
12331
12608
|
class Resource
|
|
12332
12609
|
include Google::Apis::Core::Hashable
|
|
12333
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
|
+
|
|
12334
12616
|
# AWS metadata associated with the resource, only applicable if the finding's
|
|
12335
12617
|
# cloud provider is Amazon Web Services.
|
|
12336
12618
|
# Corresponds to the JSON property `awsMetadata`
|
|
@@ -12430,6 +12712,7 @@ module Google
|
|
|
12430
12712
|
|
|
12431
12713
|
# Update properties of this object
|
|
12432
12714
|
def update!(**args)
|
|
12715
|
+
@application = args[:application] if args.key?(:application)
|
|
12433
12716
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
|
12434
12717
|
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
|
12435
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
|
|
|
@@ -1300,6 +1330,36 @@ module Google
|
|
|
1300
1330
|
include Google::Apis::Core::JsonObjectSupport
|
|
1301
1331
|
end
|
|
1302
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
|
+
|
|
1303
1363
|
class GoogleCloudSecuritycenterV2ResourcePath
|
|
1304
1364
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1305
1365
|
|
|
@@ -2052,6 +2112,7 @@ module Google
|
|
|
2052
2112
|
property :location, as: 'location'
|
|
2053
2113
|
property :name, as: 'name'
|
|
2054
2114
|
property :publisher, as: 'publisher'
|
|
2115
|
+
property :usage_category, as: 'usageCategory'
|
|
2055
2116
|
end
|
|
2056
2117
|
end
|
|
2057
2118
|
|
|
@@ -3011,6 +3072,8 @@ module Google
|
|
|
3011
3072
|
class GoogleCloudSecuritycenterV1Resource
|
|
3012
3073
|
# @private
|
|
3013
3074
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3075
|
+
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplication, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplication::Representation
|
|
3076
|
+
|
|
3014
3077
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1::AwsMetadata, decorator: Google::Apis::SecuritycenterV1::AwsMetadata::Representation
|
|
3015
3078
|
|
|
3016
3079
|
property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1::AzureMetadata, decorator: Google::Apis::SecuritycenterV1::AzureMetadata::Representation
|
|
@@ -3034,6 +3097,52 @@ module Google
|
|
|
3034
3097
|
end
|
|
3035
3098
|
end
|
|
3036
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
|
+
|
|
3037
3146
|
class GoogleCloudSecuritycenterV1ResourceSelector
|
|
3038
3147
|
# @private
|
|
3039
3148
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3222,6 +3331,7 @@ module Google
|
|
|
3222
3331
|
property :location, as: 'location'
|
|
3223
3332
|
property :name, as: 'name'
|
|
3224
3333
|
property :publisher, as: 'publisher'
|
|
3334
|
+
property :usage_category, as: 'usageCategory'
|
|
3225
3335
|
end
|
|
3226
3336
|
end
|
|
3227
3337
|
|
|
@@ -4401,6 +4511,8 @@ module Google
|
|
|
4401
4511
|
class GoogleCloudSecuritycenterV2Resource
|
|
4402
4512
|
# @private
|
|
4403
4513
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4514
|
+
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplication, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplication::Representation
|
|
4515
|
+
|
|
4404
4516
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AwsMetadata, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AwsMetadata::Representation
|
|
4405
4517
|
|
|
4406
4518
|
property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AzureMetadata, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AzureMetadata::Representation
|
|
@@ -4419,6 +4531,52 @@ module Google
|
|
|
4419
4531
|
end
|
|
4420
4532
|
end
|
|
4421
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
|
+
|
|
4422
4580
|
class GoogleCloudSecuritycenterV2ResourcePath
|
|
4423
4581
|
# @private
|
|
4424
4582
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -5205,6 +5363,8 @@ module Google
|
|
|
5205
5363
|
class Resource
|
|
5206
5364
|
# @private
|
|
5207
5365
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5366
|
+
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplication, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplication::Representation
|
|
5367
|
+
|
|
5208
5368
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1::AwsMetadata, decorator: Google::Apis::SecuritycenterV1::AwsMetadata::Representation
|
|
5209
5369
|
|
|
5210
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:
|