google-apis-securitycenter_v1beta1 0.101.0 → 0.102.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: 55d65856ad281e4903f6877363c2b0129627e4da0438aa04c7316bbaef8f6512
4
- data.tar.gz: c5e0eb40fedc59d0bb9e8df1d11919096cb0ed20556a1167bdbffcb996a51797
3
+ metadata.gz: c809e3ec900f9a71da1f95071061e3582b1216377dde830a9efd3c14b192fe74
4
+ data.tar.gz: 1fb94c2cecac14f13ab6f98cdd0a3ff0e504ebee69a2453b95fde69c0bbbb596
5
5
  SHA512:
6
- metadata.gz: 9dd6bda3e5052d82b9ca3b4b9ef725a8034fcb2400a8cfb8ecca6579d84f7abc0ab0ee417a4a284e327f194a29ae4f9e49b1a37a84b915e9105442020ef0b498
7
- data.tar.gz: b885f0bc05a5ba2ad9e0607b97596a8954bdc09c0338773528e4def6ee5270f9710021ac1be3e79254513386f9eab8b2f427e3fc559f0dd487b7534f738e6a19
6
+ metadata.gz: c033483281b2b7e9ce3ab5092141ec01ccf73ec3d8f9190648326a6892d5e9899504a682794bfb2be73ce4af63b0710e9d933b55a55d0e9af677da75485ba6f0
7
+ data.tar.gz: e3d62b9245cb6c1d92f84507b8679c0c621c0017d71d20a3d2d2646465d583c8486a37e325d90a07c9025de373460859f1c27c707046b7333d7a13ef3e6ec489
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-securitycenter_v1beta1
2
2
 
3
+ ### v0.102.0 (2026-02-01)
4
+
5
+ * Regenerated from discovery document revision 20260123
6
+
3
7
  ### v0.101.0 (2026-01-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20260105
@@ -211,6 +211,74 @@ module Google
211
211
  end
212
212
  end
213
213
 
214
+ # Represents an ADC application associated with the finding.
215
+ class AdcApplication
216
+ include Google::Apis::Core::Hashable
217
+
218
+ # Consumer provided attributes for the application
219
+ # Corresponds to the JSON property `attributes`
220
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributes]
221
+ attr_accessor :attributes
222
+
223
+ # The resource name of an ADC Application. Format: projects/`project`/locations/`
224
+ # location`/spaces/`space`/applications/`application`
225
+ # Corresponds to the JSON property `name`
226
+ # @return [String]
227
+ attr_accessor :name
228
+
229
+ def initialize(**args)
230
+ update!(**args)
231
+ end
232
+
233
+ # Update properties of this object
234
+ def update!(**args)
235
+ @attributes = args[:attributes] if args.key?(:attributes)
236
+ @name = args[:name] if args.key?(:name)
237
+ end
238
+ end
239
+
240
+ # Represents an ADC template associated with the finding.
241
+ class AdcApplicationTemplateRevision
242
+ include Google::Apis::Core::Hashable
243
+
244
+ # The resource name of an ADC Application Template Revision. Format: projects/`
245
+ # project`/locations/`location`/spaces/`space`/applicationTemplates/`
246
+ # application_template`/revisions/`revision`
247
+ # Corresponds to the JSON property `name`
248
+ # @return [String]
249
+ attr_accessor :name
250
+
251
+ def initialize(**args)
252
+ update!(**args)
253
+ end
254
+
255
+ # Update properties of this object
256
+ def update!(**args)
257
+ @name = args[:name] if args.key?(:name)
258
+ end
259
+ end
260
+
261
+ # Represents an ADC shared template associated with the finding.
262
+ class AdcSharedTemplateRevision
263
+ include Google::Apis::Core::Hashable
264
+
265
+ # The resource name of an ADC Shared Template Revision. Format: projects/`
266
+ # project`/locations/`location`/spaces/`space`/applicationTemplates/`
267
+ # application_template`/revisions/`revision`
268
+ # Corresponds to the JSON property `name`
269
+ # @return [String]
270
+ attr_accessor :name
271
+
272
+ def initialize(**args)
273
+ update!(**args)
274
+ end
275
+
276
+ # Update properties of this object
277
+ def update!(**args)
278
+ @name = args[:name] if args.key?(:name)
279
+ end
280
+ end
281
+
214
282
  # Details about resources affected by this finding.
215
283
  class AffectedResources
216
284
  include Google::Apis::Core::Hashable
@@ -3634,6 +3702,21 @@ module Google
3634
3702
  class GoogleCloudSecuritycenterV1Resource
3635
3703
  include Google::Apis::Core::Hashable
3636
3704
 
3705
+ # Represents an ADC application associated with the finding.
3706
+ # Corresponds to the JSON property `adcApplication`
3707
+ # @return [Google::Apis::SecuritycenterV1beta1::AdcApplication]
3708
+ attr_accessor :adc_application
3709
+
3710
+ # Represents an ADC template associated with the finding.
3711
+ # Corresponds to the JSON property `adcApplicationTemplate`
3712
+ # @return [Google::Apis::SecuritycenterV1beta1::AdcApplicationTemplateRevision]
3713
+ attr_accessor :adc_application_template
3714
+
3715
+ # Represents an ADC shared template associated with the finding.
3716
+ # Corresponds to the JSON property `adcSharedTemplate`
3717
+ # @return [Google::Apis::SecuritycenterV1beta1::AdcSharedTemplateRevision]
3718
+ attr_accessor :adc_shared_template
3719
+
3637
3720
  # The App Hub Application associated with the finding's resource.
3638
3721
  # Corresponds to the JSON property `application`
3639
3722
  # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplication]
@@ -3741,6 +3824,9 @@ module Google
3741
3824
 
3742
3825
  # Update properties of this object
3743
3826
  def update!(**args)
3827
+ @adc_application = args[:adc_application] if args.key?(:adc_application)
3828
+ @adc_application_template = args[:adc_application_template] if args.key?(:adc_application_template)
3829
+ @adc_shared_template = args[:adc_shared_template] if args.key?(:adc_shared_template)
3744
3830
  @application = args[:application] if args.key?(:application)
3745
3831
  @aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
3746
3832
  @azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
@@ -4779,6 +4865,74 @@ module Google
4779
4865
  end
4780
4866
  end
4781
4867
 
4868
+ # Represents an ADC application associated with the finding.
4869
+ class GoogleCloudSecuritycenterV2AdcApplication
4870
+ include Google::Apis::Core::Hashable
4871
+
4872
+ # Consumer provided attributes for the application
4873
+ # Corresponds to the JSON property `attributes`
4874
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributes]
4875
+ attr_accessor :attributes
4876
+
4877
+ # The resource name of an ADC Application. Format: projects/`project`/locations/`
4878
+ # location`/spaces/`space`/applications/`application`
4879
+ # Corresponds to the JSON property `name`
4880
+ # @return [String]
4881
+ attr_accessor :name
4882
+
4883
+ def initialize(**args)
4884
+ update!(**args)
4885
+ end
4886
+
4887
+ # Update properties of this object
4888
+ def update!(**args)
4889
+ @attributes = args[:attributes] if args.key?(:attributes)
4890
+ @name = args[:name] if args.key?(:name)
4891
+ end
4892
+ end
4893
+
4894
+ # Represents an ADC template associated with the finding.
4895
+ class GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision
4896
+ include Google::Apis::Core::Hashable
4897
+
4898
+ # The resource name of an ADC Application Template Revision. Format: projects/`
4899
+ # project`/locations/`location`/spaces/`space`/applicationTemplates/`
4900
+ # application_template`/revisions/`revision`
4901
+ # Corresponds to the JSON property `name`
4902
+ # @return [String]
4903
+ attr_accessor :name
4904
+
4905
+ def initialize(**args)
4906
+ update!(**args)
4907
+ end
4908
+
4909
+ # Update properties of this object
4910
+ def update!(**args)
4911
+ @name = args[:name] if args.key?(:name)
4912
+ end
4913
+ end
4914
+
4915
+ # Represents an ADC shared template associated with the finding.
4916
+ class GoogleCloudSecuritycenterV2AdcSharedTemplateRevision
4917
+ include Google::Apis::Core::Hashable
4918
+
4919
+ # The resource name of an ADC Shared Template Revision. Format: projects/`
4920
+ # project`/locations/`location`/spaces/`space`/applicationTemplates/`
4921
+ # application_template`/revisions/`revision`
4922
+ # Corresponds to the JSON property `name`
4923
+ # @return [String]
4924
+ attr_accessor :name
4925
+
4926
+ def initialize(**args)
4927
+ update!(**args)
4928
+ end
4929
+
4930
+ # Update properties of this object
4931
+ def update!(**args)
4932
+ @name = args[:name] if args.key?(:name)
4933
+ end
4934
+ end
4935
+
4782
4936
  # Details about resources affected by this finding.
4783
4937
  class GoogleCloudSecuritycenterV2AffectedResources
4784
4938
  include Google::Apis::Core::Hashable
@@ -7877,6 +8031,21 @@ module Google
7877
8031
  class GoogleCloudSecuritycenterV2IssueResource
7878
8032
  include Google::Apis::Core::Hashable
7879
8033
 
8034
+ # Represents an ADC application associated with the finding.
8035
+ # Corresponds to the JSON property `adcApplication`
8036
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAdcApplication]
8037
+ attr_accessor :adc_application
8038
+
8039
+ # Represents an ADC template associated with the finding.
8040
+ # Corresponds to the JSON property `adcApplicationTemplate`
8041
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision]
8042
+ attr_accessor :adc_application_template
8043
+
8044
+ # Represents an ADC shared template associated with the finding.
8045
+ # Corresponds to the JSON property `adcSharedTemplate`
8046
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision]
8047
+ attr_accessor :adc_shared_template
8048
+
7880
8049
  # The AppHub application associated with the resource, if any.
7881
8050
  # Corresponds to the JSON property `application`
7882
8051
  # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplication]
@@ -7924,6 +8093,9 @@ module Google
7924
8093
 
7925
8094
  # Update properties of this object
7926
8095
  def update!(**args)
8096
+ @adc_application = args[:adc_application] if args.key?(:adc_application)
8097
+ @adc_application_template = args[:adc_application_template] if args.key?(:adc_application_template)
8098
+ @adc_shared_template = args[:adc_shared_template] if args.key?(:adc_shared_template)
7927
8099
  @application = args[:application] if args.key?(:application)
7928
8100
  @aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
7929
8101
  @azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
@@ -7935,6 +8107,74 @@ module Google
7935
8107
  end
7936
8108
  end
7937
8109
 
8110
+ # Represents an ADC application associated with the finding.
8111
+ class GoogleCloudSecuritycenterV2IssueResourceAdcApplication
8112
+ include Google::Apis::Core::Hashable
8113
+
8114
+ # Consumer provided attributes for the application
8115
+ # Corresponds to the JSON property `attributes`
8116
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes]
8117
+ attr_accessor :attributes
8118
+
8119
+ # The resource name of an ADC Application. Format: projects/`project`/locations/`
8120
+ # location`/spaces/`space`/applications/`application`
8121
+ # Corresponds to the JSON property `name`
8122
+ # @return [String]
8123
+ attr_accessor :name
8124
+
8125
+ def initialize(**args)
8126
+ update!(**args)
8127
+ end
8128
+
8129
+ # Update properties of this object
8130
+ def update!(**args)
8131
+ @attributes = args[:attributes] if args.key?(:attributes)
8132
+ @name = args[:name] if args.key?(:name)
8133
+ end
8134
+ end
8135
+
8136
+ # Represents an ADC template associated with the finding.
8137
+ class GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision
8138
+ include Google::Apis::Core::Hashable
8139
+
8140
+ # The resource name of an ADC Application Template Revision. Format: projects/`
8141
+ # project`/locations/`location`/spaces/`space`/applicationTemplates/`
8142
+ # application_template`/revisions/`revision`
8143
+ # Corresponds to the JSON property `name`
8144
+ # @return [String]
8145
+ attr_accessor :name
8146
+
8147
+ def initialize(**args)
8148
+ update!(**args)
8149
+ end
8150
+
8151
+ # Update properties of this object
8152
+ def update!(**args)
8153
+ @name = args[:name] if args.key?(:name)
8154
+ end
8155
+ end
8156
+
8157
+ # Represents an ADC shared template associated with the finding.
8158
+ class GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision
8159
+ include Google::Apis::Core::Hashable
8160
+
8161
+ # The resource name of an ADC Shared Template Revision. Format: projects/`
8162
+ # project`/locations/`location`/spaces/`space`/applicationTemplates/`
8163
+ # application_template`/revisions/`revision`
8164
+ # Corresponds to the JSON property `name`
8165
+ # @return [String]
8166
+ attr_accessor :name
8167
+
8168
+ def initialize(**args)
8169
+ update!(**args)
8170
+ end
8171
+
8172
+ # Update properties of this object
8173
+ def update!(**args)
8174
+ @name = args[:name] if args.key?(:name)
8175
+ end
8176
+ end
8177
+
7938
8178
  # The AppHub application associated with the resource, if any.
7939
8179
  class GoogleCloudSecuritycenterV2IssueResourceApplication
7940
8180
  include Google::Apis::Core::Hashable
@@ -9242,6 +9482,21 @@ module Google
9242
9482
  class GoogleCloudSecuritycenterV2Resource
9243
9483
  include Google::Apis::Core::Hashable
9244
9484
 
9485
+ # Represents an ADC application associated with the finding.
9486
+ # Corresponds to the JSON property `adcApplication`
9487
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AdcApplication]
9488
+ attr_accessor :adc_application
9489
+
9490
+ # Represents an ADC template associated with the finding.
9491
+ # Corresponds to the JSON property `adcApplicationTemplate`
9492
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision]
9493
+ attr_accessor :adc_application_template
9494
+
9495
+ # Represents an ADC shared template associated with the finding.
9496
+ # Corresponds to the JSON property `adcSharedTemplate`
9497
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AdcSharedTemplateRevision]
9498
+ attr_accessor :adc_shared_template
9499
+
9245
9500
  # The App Hub Application associated with the finding's resource.
9246
9501
  # Corresponds to the JSON property `application`
9247
9502
  # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplication]
@@ -9321,6 +9576,9 @@ module Google
9321
9576
 
9322
9577
  # Update properties of this object
9323
9578
  def update!(**args)
9579
+ @adc_application = args[:adc_application] if args.key?(:adc_application)
9580
+ @adc_application_template = args[:adc_application_template] if args.key?(:adc_application_template)
9581
+ @adc_shared_template = args[:adc_shared_template] if args.key?(:adc_shared_template)
9324
9582
  @application = args[:application] if args.key?(:application)
9325
9583
  @aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
9326
9584
  @azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SecuritycenterV1beta1
18
18
  # Version of the google-apis-securitycenter_v1beta1 gem
19
- GEM_VERSION = "0.101.0"
19
+ GEM_VERSION = "0.102.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 = "20260105"
25
+ REVISION = "20260123"
26
26
  end
27
27
  end
28
28
  end
@@ -40,6 +40,24 @@ module Google
40
40
  include Google::Apis::Core::JsonObjectSupport
41
41
  end
42
42
 
43
+ class AdcApplication
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
49
+ class AdcApplicationTemplateRevision
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
55
+ class AdcSharedTemplateRevision
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
43
61
  class AffectedResources
44
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
45
63
 
@@ -640,6 +658,24 @@ module Google
640
658
  include Google::Apis::Core::JsonObjectSupport
641
659
  end
642
660
 
661
+ class GoogleCloudSecuritycenterV2AdcApplication
662
+ class Representation < Google::Apis::Core::JsonRepresentation; end
663
+
664
+ include Google::Apis::Core::JsonObjectSupport
665
+ end
666
+
667
+ class GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision
668
+ class Representation < Google::Apis::Core::JsonRepresentation; end
669
+
670
+ include Google::Apis::Core::JsonObjectSupport
671
+ end
672
+
673
+ class GoogleCloudSecuritycenterV2AdcSharedTemplateRevision
674
+ class Representation < Google::Apis::Core::JsonRepresentation; end
675
+
676
+ include Google::Apis::Core::JsonObjectSupport
677
+ end
678
+
643
679
  class GoogleCloudSecuritycenterV2AffectedResources
644
680
  class Representation < Google::Apis::Core::JsonRepresentation; end
645
681
 
@@ -1060,6 +1096,24 @@ module Google
1060
1096
  include Google::Apis::Core::JsonObjectSupport
1061
1097
  end
1062
1098
 
1099
+ class GoogleCloudSecuritycenterV2IssueResourceAdcApplication
1100
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1101
+
1102
+ include Google::Apis::Core::JsonObjectSupport
1103
+ end
1104
+
1105
+ class GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision
1106
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1107
+
1108
+ include Google::Apis::Core::JsonObjectSupport
1109
+ end
1110
+
1111
+ class GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision
1112
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1113
+
1114
+ include Google::Apis::Core::JsonObjectSupport
1115
+ end
1116
+
1063
1117
  class GoogleCloudSecuritycenterV2IssueResourceApplication
1064
1118
  class Representation < Google::Apis::Core::JsonRepresentation; end
1065
1119
 
@@ -1939,6 +1993,29 @@ module Google
1939
1993
  end
1940
1994
  end
1941
1995
 
1996
+ class AdcApplication
1997
+ # @private
1998
+ class Representation < Google::Apis::Core::JsonRepresentation
1999
+ property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributes::Representation
2000
+
2001
+ property :name, as: 'name'
2002
+ end
2003
+ end
2004
+
2005
+ class AdcApplicationTemplateRevision
2006
+ # @private
2007
+ class Representation < Google::Apis::Core::JsonRepresentation
2008
+ property :name, as: 'name'
2009
+ end
2010
+ end
2011
+
2012
+ class AdcSharedTemplateRevision
2013
+ # @private
2014
+ class Representation < Google::Apis::Core::JsonRepresentation
2015
+ property :name, as: 'name'
2016
+ end
2017
+ end
2018
+
1942
2019
  class AffectedResources
1943
2020
  # @private
1944
2021
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2814,6 +2891,12 @@ module Google
2814
2891
  class GoogleCloudSecuritycenterV1Resource
2815
2892
  # @private
2816
2893
  class Representation < Google::Apis::Core::JsonRepresentation
2894
+ property :adc_application, as: 'adcApplication', class: Google::Apis::SecuritycenterV1beta1::AdcApplication, decorator: Google::Apis::SecuritycenterV1beta1::AdcApplication::Representation
2895
+
2896
+ property :adc_application_template, as: 'adcApplicationTemplate', class: Google::Apis::SecuritycenterV1beta1::AdcApplicationTemplateRevision, decorator: Google::Apis::SecuritycenterV1beta1::AdcApplicationTemplateRevision::Representation
2897
+
2898
+ property :adc_shared_template, as: 'adcSharedTemplate', class: Google::Apis::SecuritycenterV1beta1::AdcSharedTemplateRevision, decorator: Google::Apis::SecuritycenterV1beta1::AdcSharedTemplateRevision::Representation
2899
+
2817
2900
  property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplication, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplication::Representation
2818
2901
 
2819
2902
  property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta1::AwsMetadata, decorator: Google::Apis::SecuritycenterV1beta1::AwsMetadata::Representation
@@ -3081,6 +3164,29 @@ module Google
3081
3164
  end
3082
3165
  end
3083
3166
 
3167
+ class GoogleCloudSecuritycenterV2AdcApplication
3168
+ # @private
3169
+ class Representation < Google::Apis::Core::JsonRepresentation
3170
+ property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributes::Representation
3171
+
3172
+ property :name, as: 'name'
3173
+ end
3174
+ end
3175
+
3176
+ class GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision
3177
+ # @private
3178
+ class Representation < Google::Apis::Core::JsonRepresentation
3179
+ property :name, as: 'name'
3180
+ end
3181
+ end
3182
+
3183
+ class GoogleCloudSecuritycenterV2AdcSharedTemplateRevision
3184
+ # @private
3185
+ class Representation < Google::Apis::Core::JsonRepresentation
3186
+ property :name, as: 'name'
3187
+ end
3188
+ end
3189
+
3084
3190
  class GoogleCloudSecuritycenterV2AffectedResources
3085
3191
  # @private
3086
3192
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3899,6 +4005,12 @@ module Google
3899
4005
  class GoogleCloudSecuritycenterV2IssueResource
3900
4006
  # @private
3901
4007
  class Representation < Google::Apis::Core::JsonRepresentation
4008
+ property :adc_application, as: 'adcApplication', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAdcApplication, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAdcApplication::Representation
4009
+
4010
+ property :adc_application_template, as: 'adcApplicationTemplate', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision::Representation
4011
+
4012
+ property :adc_shared_template, as: 'adcSharedTemplate', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision::Representation
4013
+
3902
4014
  property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplication, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplication::Representation
3903
4015
 
3904
4016
  property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata::Representation
@@ -3914,6 +4026,29 @@ module Google
3914
4026
  end
3915
4027
  end
3916
4028
 
4029
+ class GoogleCloudSecuritycenterV2IssueResourceAdcApplication
4030
+ # @private
4031
+ class Representation < Google::Apis::Core::JsonRepresentation
4032
+ property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes::Representation
4033
+
4034
+ property :name, as: 'name'
4035
+ end
4036
+ end
4037
+
4038
+ class GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision
4039
+ # @private
4040
+ class Representation < Google::Apis::Core::JsonRepresentation
4041
+ property :name, as: 'name'
4042
+ end
4043
+ end
4044
+
4045
+ class GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision
4046
+ # @private
4047
+ class Representation < Google::Apis::Core::JsonRepresentation
4048
+ property :name, as: 'name'
4049
+ end
4050
+ end
4051
+
3917
4052
  class GoogleCloudSecuritycenterV2IssueResourceApplication
3918
4053
  # @private
3919
4054
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4301,6 +4436,12 @@ module Google
4301
4436
  class GoogleCloudSecuritycenterV2Resource
4302
4437
  # @private
4303
4438
  class Representation < Google::Apis::Core::JsonRepresentation
4439
+ property :adc_application, as: 'adcApplication', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AdcApplication, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AdcApplication::Representation
4440
+
4441
+ property :adc_application_template, as: 'adcApplicationTemplate', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision::Representation
4442
+
4443
+ property :adc_shared_template, as: 'adcSharedTemplate', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AdcSharedTemplateRevision, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AdcSharedTemplateRevision::Representation
4444
+
4304
4445
  property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplication, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplication::Representation
4305
4446
 
4306
4447
  property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AwsMetadata, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AwsMetadata::Representation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.101.0
4
+ version: 0.102.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_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.101.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.102.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: