google-apis-securitycenter_v1beta2 0.92.0 → 0.93.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: 122b9c0452ea21c00e59cc9417b81a2d79e352c8e8ee3d21bfb3f944a4907422
4
- data.tar.gz: 5d9be1a430e136b9c39cee0079bd0bf99af40a8f132387af1f590e9bdb3c2d00
3
+ metadata.gz: 4ed3389866842ea9cc41ba7748b0ebd9a09c8e82c933471cf08187e7beab083c
4
+ data.tar.gz: 90f4814c7fb61aef2ab46932fb070b4e5ec3d2eb19ca48c0cea76dc14013ce67
5
5
  SHA512:
6
- metadata.gz: 3d1d3e86b622efd967dc32886e7560abfd0240d4e58047f751ee3d5a18c93b57c6733d0b847928f63ccb1eedbddf17e9ea5e5211a6a20ade3729c68649948362
7
- data.tar.gz: cab3fffb0b2e60c42af9cb68de4a74c6eb29e6673743ed0eb8a1826bef182e1b3268e8e895565c70625dffd1d5dcc8ee2d1aa13f38d5dbc5688c3a1bcbf3233f
6
+ metadata.gz: 959ac11f784415c8a053ce9e28685a7d14c8820a343ada68aa21b30989614ec93fa53b9d24bce93311495ffee807a60e38dfa690aa860ae0dcf16c5bd9efbf4c
7
+ data.tar.gz: e1eea738bf6f7154f23f80ed0059d6205e2752894674df8d06ade2e3c06c531463947b962802f43dc0bdcea1dee9394ecd813d645e2c114fde6f5e266a562ed2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-securitycenter_v1beta2
2
2
 
3
+ ### v0.93.0 (2025-12-07)
4
+
5
+ * Regenerated from discovery document revision 20251202
6
+
3
7
  ### v0.92.0 (2025-10-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20251017
@@ -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
 
@@ -3369,6 +3375,11 @@ module Google
3369
3375
  class GoogleCloudSecuritycenterV1Resource
3370
3376
  include Google::Apis::Core::Hashable
3371
3377
 
3378
+ # The App Hub Application associated with the finding's resource.
3379
+ # Corresponds to the JSON property `application`
3380
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplication]
3381
+ attr_accessor :application
3382
+
3372
3383
  # AWS metadata associated with the resource, only applicable if the finding's
3373
3384
  # cloud provider is Amazon Web Services.
3374
3385
  # Corresponds to the JSON property `awsMetadata`
@@ -3471,6 +3482,7 @@ module Google
3471
3482
 
3472
3483
  # Update properties of this object
3473
3484
  def update!(**args)
3485
+ @application = args[:application] if args.key?(:application)
3474
3486
  @aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
3475
3487
  @azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
3476
3488
  @cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
@@ -3490,6 +3502,132 @@ module Google
3490
3502
  end
3491
3503
  end
3492
3504
 
3505
+ # The App Hub Application associated with the finding's resource.
3506
+ class GoogleCloudSecuritycenterV1ResourceApplication
3507
+ include Google::Apis::Core::Hashable
3508
+
3509
+ # Consumer provided attributes for the application
3510
+ # Corresponds to the JSON property `attributes`
3511
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributes]
3512
+ attr_accessor :attributes
3513
+
3514
+ # The resource name of an Application. Format: `projects/`host-project-id`/
3515
+ # locations/`location`/applications/`application-id``
3516
+ # Corresponds to the JSON property `name`
3517
+ # @return [String]
3518
+ attr_accessor :name
3519
+
3520
+ def initialize(**args)
3521
+ update!(**args)
3522
+ end
3523
+
3524
+ # Update properties of this object
3525
+ def update!(**args)
3526
+ @attributes = args[:attributes] if args.key?(:attributes)
3527
+ @name = args[:name] if args.key?(:name)
3528
+ end
3529
+ end
3530
+
3531
+ # Consumer provided attributes for the application
3532
+ class GoogleCloudSecuritycenterV1ResourceApplicationAttributes
3533
+ include Google::Apis::Core::Hashable
3534
+
3535
+ # Business team that ensures user needs are met and value is delivered
3536
+ # Corresponds to the JSON property `businessOwners`
3537
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo>]
3538
+ attr_accessor :business_owners
3539
+
3540
+ # Criticality of the Application, Service, or Workload
3541
+ # Corresponds to the JSON property `criticality`
3542
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality]
3543
+ attr_accessor :criticality
3544
+
3545
+ # Developer team that owns development and coding.
3546
+ # Corresponds to the JSON property `developerOwners`
3547
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo>]
3548
+ attr_accessor :developer_owners
3549
+
3550
+ # Environment of the Application, Service, or Workload
3551
+ # Corresponds to the JSON property `environment`
3552
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment]
3553
+ attr_accessor :environment
3554
+
3555
+ # Operator team that ensures runtime and operations.
3556
+ # Corresponds to the JSON property `operatorOwners`
3557
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo>]
3558
+ attr_accessor :operator_owners
3559
+
3560
+ def initialize(**args)
3561
+ update!(**args)
3562
+ end
3563
+
3564
+ # Update properties of this object
3565
+ def update!(**args)
3566
+ @business_owners = args[:business_owners] if args.key?(:business_owners)
3567
+ @criticality = args[:criticality] if args.key?(:criticality)
3568
+ @developer_owners = args[:developer_owners] if args.key?(:developer_owners)
3569
+ @environment = args[:environment] if args.key?(:environment)
3570
+ @operator_owners = args[:operator_owners] if args.key?(:operator_owners)
3571
+ end
3572
+ end
3573
+
3574
+ # Contact information of stakeholders.
3575
+ class GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo
3576
+ include Google::Apis::Core::Hashable
3577
+
3578
+ # Email address of the contacts.
3579
+ # Corresponds to the JSON property `email`
3580
+ # @return [String]
3581
+ attr_accessor :email
3582
+
3583
+ def initialize(**args)
3584
+ update!(**args)
3585
+ end
3586
+
3587
+ # Update properties of this object
3588
+ def update!(**args)
3589
+ @email = args[:email] if args.key?(:email)
3590
+ end
3591
+ end
3592
+
3593
+ # Criticality of the Application, Service, or Workload
3594
+ class GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality
3595
+ include Google::Apis::Core::Hashable
3596
+
3597
+ # Criticality Type.
3598
+ # Corresponds to the JSON property `type`
3599
+ # @return [String]
3600
+ attr_accessor :type
3601
+
3602
+ def initialize(**args)
3603
+ update!(**args)
3604
+ end
3605
+
3606
+ # Update properties of this object
3607
+ def update!(**args)
3608
+ @type = args[:type] if args.key?(:type)
3609
+ end
3610
+ end
3611
+
3612
+ # Environment of the Application, Service, or Workload
3613
+ class GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment
3614
+ include Google::Apis::Core::Hashable
3615
+
3616
+ # Environment Type.
3617
+ # Corresponds to the JSON property `type`
3618
+ # @return [String]
3619
+ attr_accessor :type
3620
+
3621
+ def initialize(**args)
3622
+ update!(**args)
3623
+ end
3624
+
3625
+ # Update properties of this object
3626
+ def update!(**args)
3627
+ @type = args[:type] if args.key?(:type)
3628
+ end
3629
+ end
3630
+
3493
3631
  # Resource for selecting resource type.
3494
3632
  class GoogleCloudSecuritycenterV1ResourceSelector
3495
3633
  include Google::Apis::Core::Hashable
@@ -4307,6 +4445,11 @@ module Google
4307
4445
  # @return [String]
4308
4446
  attr_accessor :publisher
4309
4447
 
4448
+ # The purpose of the model, for example, "Inteference" or "Training".
4449
+ # Corresponds to the JSON property `usageCategory`
4450
+ # @return [String]
4451
+ attr_accessor :usage_category
4452
+
4310
4453
  def initialize(**args)
4311
4454
  update!(**args)
4312
4455
  end
@@ -4320,6 +4463,7 @@ module Google
4320
4463
  @location = args[:location] if args.key?(:location)
4321
4464
  @name = args[:name] if args.key?(:name)
4322
4465
  @publisher = args[:publisher] if args.key?(:publisher)
4466
+ @usage_category = args[:usage_category] if args.key?(:usage_category)
4323
4467
  end
4324
4468
  end
4325
4469
 
@@ -8630,6 +8774,11 @@ module Google
8630
8774
  class GoogleCloudSecuritycenterV2Resource
8631
8775
  include Google::Apis::Core::Hashable
8632
8776
 
8777
+ # The App Hub Application associated with the finding's resource.
8778
+ # Corresponds to the JSON property `application`
8779
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplication]
8780
+ attr_accessor :application
8781
+
8633
8782
  # AWS metadata associated with the resource, only applicable if the finding's
8634
8783
  # cloud provider is Amazon Web Services.
8635
8784
  # Corresponds to the JSON property `awsMetadata`
@@ -8704,6 +8853,7 @@ module Google
8704
8853
 
8705
8854
  # Update properties of this object
8706
8855
  def update!(**args)
8856
+ @application = args[:application] if args.key?(:application)
8707
8857
  @aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
8708
8858
  @azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
8709
8859
  @cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
@@ -8718,6 +8868,132 @@ module Google
8718
8868
  end
8719
8869
  end
8720
8870
 
8871
+ # The App Hub Application associated with the finding's resource.
8872
+ class GoogleCloudSecuritycenterV2ResourceApplication
8873
+ include Google::Apis::Core::Hashable
8874
+
8875
+ # Consumer provided attributes for the application
8876
+ # Corresponds to the JSON property `attributes`
8877
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributes]
8878
+ attr_accessor :attributes
8879
+
8880
+ # The resource name of an Application. Format: `projects/`host-project-id`/
8881
+ # locations/`location`/applications/`application-id``
8882
+ # Corresponds to the JSON property `name`
8883
+ # @return [String]
8884
+ attr_accessor :name
8885
+
8886
+ def initialize(**args)
8887
+ update!(**args)
8888
+ end
8889
+
8890
+ # Update properties of this object
8891
+ def update!(**args)
8892
+ @attributes = args[:attributes] if args.key?(:attributes)
8893
+ @name = args[:name] if args.key?(:name)
8894
+ end
8895
+ end
8896
+
8897
+ # Consumer provided attributes for the application
8898
+ class GoogleCloudSecuritycenterV2ResourceApplicationAttributes
8899
+ include Google::Apis::Core::Hashable
8900
+
8901
+ # Business team that ensures user needs are met and value is delivered
8902
+ # Corresponds to the JSON property `businessOwners`
8903
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo>]
8904
+ attr_accessor :business_owners
8905
+
8906
+ # Criticality of the Application, Service, or Workload
8907
+ # Corresponds to the JSON property `criticality`
8908
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality]
8909
+ attr_accessor :criticality
8910
+
8911
+ # Developer team that owns development and coding.
8912
+ # Corresponds to the JSON property `developerOwners`
8913
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo>]
8914
+ attr_accessor :developer_owners
8915
+
8916
+ # Environment of the Application, Service, or Workload
8917
+ # Corresponds to the JSON property `environment`
8918
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment]
8919
+ attr_accessor :environment
8920
+
8921
+ # Operator team that ensures runtime and operations.
8922
+ # Corresponds to the JSON property `operatorOwners`
8923
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo>]
8924
+ attr_accessor :operator_owners
8925
+
8926
+ def initialize(**args)
8927
+ update!(**args)
8928
+ end
8929
+
8930
+ # Update properties of this object
8931
+ def update!(**args)
8932
+ @business_owners = args[:business_owners] if args.key?(:business_owners)
8933
+ @criticality = args[:criticality] if args.key?(:criticality)
8934
+ @developer_owners = args[:developer_owners] if args.key?(:developer_owners)
8935
+ @environment = args[:environment] if args.key?(:environment)
8936
+ @operator_owners = args[:operator_owners] if args.key?(:operator_owners)
8937
+ end
8938
+ end
8939
+
8940
+ # Contact information of stakeholders.
8941
+ class GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo
8942
+ include Google::Apis::Core::Hashable
8943
+
8944
+ # Email address of the contacts.
8945
+ # Corresponds to the JSON property `email`
8946
+ # @return [String]
8947
+ attr_accessor :email
8948
+
8949
+ def initialize(**args)
8950
+ update!(**args)
8951
+ end
8952
+
8953
+ # Update properties of this object
8954
+ def update!(**args)
8955
+ @email = args[:email] if args.key?(:email)
8956
+ end
8957
+ end
8958
+
8959
+ # Criticality of the Application, Service, or Workload
8960
+ class GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality
8961
+ include Google::Apis::Core::Hashable
8962
+
8963
+ # Criticality Type.
8964
+ # Corresponds to the JSON property `type`
8965
+ # @return [String]
8966
+ attr_accessor :type
8967
+
8968
+ def initialize(**args)
8969
+ update!(**args)
8970
+ end
8971
+
8972
+ # Update properties of this object
8973
+ def update!(**args)
8974
+ @type = args[:type] if args.key?(:type)
8975
+ end
8976
+ end
8977
+
8978
+ # Environment of the Application, Service, or Workload
8979
+ class GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment
8980
+ include Google::Apis::Core::Hashable
8981
+
8982
+ # Environment Type.
8983
+ # Corresponds to the JSON property `type`
8984
+ # @return [String]
8985
+ attr_accessor :type
8986
+
8987
+ def initialize(**args)
8988
+ update!(**args)
8989
+ end
8990
+
8991
+ # Update properties of this object
8992
+ def update!(**args)
8993
+ @type = args[:type] if args.key?(:type)
8994
+ end
8995
+ end
8996
+
8721
8997
  # Represents the path of resources leading up to the resource this finding is
8722
8998
  # about.
8723
8999
  class GoogleCloudSecuritycenterV2ResourcePath
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SecuritycenterV1beta2
18
18
  # Version of the google-apis-securitycenter_v1beta2 gem
19
- GEM_VERSION = "0.92.0"
19
+ GEM_VERSION = "0.93.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 = "20251017"
25
+ REVISION = "20251202"
26
26
  end
27
27
  end
28
28
  end
@@ -466,6 +466,36 @@ module Google
466
466
  include Google::Apis::Core::JsonObjectSupport
467
467
  end
468
468
 
469
+ class GoogleCloudSecuritycenterV1ResourceApplication
470
+ class Representation < Google::Apis::Core::JsonRepresentation; end
471
+
472
+ include Google::Apis::Core::JsonObjectSupport
473
+ end
474
+
475
+ class GoogleCloudSecuritycenterV1ResourceApplicationAttributes
476
+ class Representation < Google::Apis::Core::JsonRepresentation; end
477
+
478
+ include Google::Apis::Core::JsonObjectSupport
479
+ end
480
+
481
+ class GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo
482
+ class Representation < Google::Apis::Core::JsonRepresentation; end
483
+
484
+ include Google::Apis::Core::JsonObjectSupport
485
+ end
486
+
487
+ class GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality
488
+ class Representation < Google::Apis::Core::JsonRepresentation; end
489
+
490
+ include Google::Apis::Core::JsonObjectSupport
491
+ end
492
+
493
+ class GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment
494
+ class Representation < Google::Apis::Core::JsonRepresentation; end
495
+
496
+ include Google::Apis::Core::JsonObjectSupport
497
+ end
498
+
469
499
  class GoogleCloudSecuritycenterV1ResourceSelector
470
500
  class Representation < Google::Apis::Core::JsonRepresentation; end
471
501
 
@@ -1204,6 +1234,36 @@ module Google
1204
1234
  include Google::Apis::Core::JsonObjectSupport
1205
1235
  end
1206
1236
 
1237
+ class GoogleCloudSecuritycenterV2ResourceApplication
1238
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1239
+
1240
+ include Google::Apis::Core::JsonObjectSupport
1241
+ end
1242
+
1243
+ class GoogleCloudSecuritycenterV2ResourceApplicationAttributes
1244
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1245
+
1246
+ include Google::Apis::Core::JsonObjectSupport
1247
+ end
1248
+
1249
+ class GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo
1250
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1251
+
1252
+ include Google::Apis::Core::JsonObjectSupport
1253
+ end
1254
+
1255
+ class GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality
1256
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1257
+
1258
+ include Google::Apis::Core::JsonObjectSupport
1259
+ end
1260
+
1261
+ class GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment
1262
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1263
+
1264
+ include Google::Apis::Core::JsonObjectSupport
1265
+ end
1266
+
1207
1267
  class GoogleCloudSecuritycenterV2ResourcePath
1208
1268
  class Representation < Google::Apis::Core::JsonRepresentation; end
1209
1269
 
@@ -1692,6 +1752,7 @@ module Google
1692
1752
  property :location, as: 'location'
1693
1753
  property :name, as: 'name'
1694
1754
  property :publisher, as: 'publisher'
1755
+ property :usage_category, as: 'usageCategory'
1695
1756
  end
1696
1757
  end
1697
1758
 
@@ -2490,6 +2551,8 @@ module Google
2490
2551
  class GoogleCloudSecuritycenterV1Resource
2491
2552
  # @private
2492
2553
  class Representation < Google::Apis::Core::JsonRepresentation
2554
+ property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplication, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplication::Representation
2555
+
2493
2556
  property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta2::AwsMetadata, decorator: Google::Apis::SecuritycenterV1beta2::AwsMetadata::Representation
2494
2557
 
2495
2558
  property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1beta2::AzureMetadata, decorator: Google::Apis::SecuritycenterV1beta2::AzureMetadata::Representation
@@ -2513,6 +2576,52 @@ module Google
2513
2576
  end
2514
2577
  end
2515
2578
 
2579
+ class GoogleCloudSecuritycenterV1ResourceApplication
2580
+ # @private
2581
+ class Representation < Google::Apis::Core::JsonRepresentation
2582
+ property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributes::Representation
2583
+
2584
+ property :name, as: 'name'
2585
+ end
2586
+ end
2587
+
2588
+ class GoogleCloudSecuritycenterV1ResourceApplicationAttributes
2589
+ # @private
2590
+ class Representation < Google::Apis::Core::JsonRepresentation
2591
+ collection :business_owners, as: 'businessOwners', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo::Representation
2592
+
2593
+ property :criticality, as: 'criticality', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality::Representation
2594
+
2595
+ collection :developer_owners, as: 'developerOwners', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo::Representation
2596
+
2597
+ property :environment, as: 'environment', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment::Representation
2598
+
2599
+ collection :operator_owners, as: 'operatorOwners', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo::Representation
2600
+
2601
+ end
2602
+ end
2603
+
2604
+ class GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo
2605
+ # @private
2606
+ class Representation < Google::Apis::Core::JsonRepresentation
2607
+ property :email, as: 'email'
2608
+ end
2609
+ end
2610
+
2611
+ class GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality
2612
+ # @private
2613
+ class Representation < Google::Apis::Core::JsonRepresentation
2614
+ property :type, as: 'type'
2615
+ end
2616
+ end
2617
+
2618
+ class GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment
2619
+ # @private
2620
+ class Representation < Google::Apis::Core::JsonRepresentation
2621
+ property :type, as: 'type'
2622
+ end
2623
+ end
2624
+
2516
2625
  class GoogleCloudSecuritycenterV1ResourceSelector
2517
2626
  # @private
2518
2627
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2701,6 +2810,7 @@ module Google
2701
2810
  property :location, as: 'location'
2702
2811
  property :name, as: 'name'
2703
2812
  property :publisher, as: 'publisher'
2813
+ property :usage_category, as: 'usageCategory'
2704
2814
  end
2705
2815
  end
2706
2816
 
@@ -3880,6 +3990,8 @@ module Google
3880
3990
  class GoogleCloudSecuritycenterV2Resource
3881
3991
  # @private
3882
3992
  class Representation < Google::Apis::Core::JsonRepresentation
3993
+ property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplication, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplication::Representation
3994
+
3883
3995
  property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AwsMetadata, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AwsMetadata::Representation
3884
3996
 
3885
3997
  property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AzureMetadata, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AzureMetadata::Representation
@@ -3898,6 +4010,52 @@ module Google
3898
4010
  end
3899
4011
  end
3900
4012
 
4013
+ class GoogleCloudSecuritycenterV2ResourceApplication
4014
+ # @private
4015
+ class Representation < Google::Apis::Core::JsonRepresentation
4016
+ property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributes::Representation
4017
+
4018
+ property :name, as: 'name'
4019
+ end
4020
+ end
4021
+
4022
+ class GoogleCloudSecuritycenterV2ResourceApplicationAttributes
4023
+ # @private
4024
+ class Representation < Google::Apis::Core::JsonRepresentation
4025
+ collection :business_owners, as: 'businessOwners', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo::Representation
4026
+
4027
+ property :criticality, as: 'criticality', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality::Representation
4028
+
4029
+ collection :developer_owners, as: 'developerOwners', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo::Representation
4030
+
4031
+ property :environment, as: 'environment', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment::Representation
4032
+
4033
+ collection :operator_owners, as: 'operatorOwners', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo::Representation
4034
+
4035
+ end
4036
+ end
4037
+
4038
+ class GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo
4039
+ # @private
4040
+ class Representation < Google::Apis::Core::JsonRepresentation
4041
+ property :email, as: 'email'
4042
+ end
4043
+ end
4044
+
4045
+ class GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality
4046
+ # @private
4047
+ class Representation < Google::Apis::Core::JsonRepresentation
4048
+ property :type, as: 'type'
4049
+ end
4050
+ end
4051
+
4052
+ class GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment
4053
+ # @private
4054
+ class Representation < Google::Apis::Core::JsonRepresentation
4055
+ property :type, as: 'type'
4056
+ end
4057
+ end
4058
+
3901
4059
  class GoogleCloudSecuritycenterV2ResourcePath
3902
4060
  # @private
3903
4061
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1beta2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.92.0
4
+ version: 0.93.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_v1beta2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.92.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.93.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2
62
62
  rdoc_options: []
63
63
  require_paths: