google-apis-securitycenter_v1 0.112.0 → 0.113.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: d4690aa4893a34e00063888a708885997edb7c37a5edadac9d2e5c38bae1d35b
|
|
4
|
+
data.tar.gz: c85f8fd3fb263c79f2b0b9822e6f7a087be3c0ec55dec04ca2f2743531b44bf7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef633705c492111060a8f6f8986fd6b8634613eda57da7291968057ae6df0320213a3b0dc9333c884c6ac507c5c40c673e9fc290870e42296bb854aaf14acf67
|
|
7
|
+
data.tar.gz: 301a8a25a24f932c1c867857f188c816d2e5b42d55ba2a034fb51970561c938513db1e5ff9c43adf282e9a32f935f06fccbe8e75e772ed4f77bdca06f933baa2
|
data/CHANGELOG.md
CHANGED
|
@@ -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::SecuritycenterV1::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
|
|
@@ -4117,6 +4185,21 @@ module Google
|
|
|
4117
4185
|
class GoogleCloudSecuritycenterV1Resource
|
|
4118
4186
|
include Google::Apis::Core::Hashable
|
|
4119
4187
|
|
|
4188
|
+
# Represents an ADC application associated with the finding.
|
|
4189
|
+
# Corresponds to the JSON property `adcApplication`
|
|
4190
|
+
# @return [Google::Apis::SecuritycenterV1::AdcApplication]
|
|
4191
|
+
attr_accessor :adc_application
|
|
4192
|
+
|
|
4193
|
+
# Represents an ADC template associated with the finding.
|
|
4194
|
+
# Corresponds to the JSON property `adcApplicationTemplate`
|
|
4195
|
+
# @return [Google::Apis::SecuritycenterV1::AdcApplicationTemplateRevision]
|
|
4196
|
+
attr_accessor :adc_application_template
|
|
4197
|
+
|
|
4198
|
+
# Represents an ADC shared template associated with the finding.
|
|
4199
|
+
# Corresponds to the JSON property `adcSharedTemplate`
|
|
4200
|
+
# @return [Google::Apis::SecuritycenterV1::AdcSharedTemplateRevision]
|
|
4201
|
+
attr_accessor :adc_shared_template
|
|
4202
|
+
|
|
4120
4203
|
# The App Hub Application associated with the finding's resource.
|
|
4121
4204
|
# Corresponds to the JSON property `application`
|
|
4122
4205
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplication]
|
|
@@ -4224,6 +4307,9 @@ module Google
|
|
|
4224
4307
|
|
|
4225
4308
|
# Update properties of this object
|
|
4226
4309
|
def update!(**args)
|
|
4310
|
+
@adc_application = args[:adc_application] if args.key?(:adc_application)
|
|
4311
|
+
@adc_application_template = args[:adc_application_template] if args.key?(:adc_application_template)
|
|
4312
|
+
@adc_shared_template = args[:adc_shared_template] if args.key?(:adc_shared_template)
|
|
4227
4313
|
@application = args[:application] if args.key?(:application)
|
|
4228
4314
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
|
4229
4315
|
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
|
@@ -5129,6 +5215,74 @@ module Google
|
|
|
5129
5215
|
end
|
|
5130
5216
|
end
|
|
5131
5217
|
|
|
5218
|
+
# Represents an ADC application associated with the finding.
|
|
5219
|
+
class GoogleCloudSecuritycenterV2AdcApplication
|
|
5220
|
+
include Google::Apis::Core::Hashable
|
|
5221
|
+
|
|
5222
|
+
# Consumer provided attributes for the application
|
|
5223
|
+
# Corresponds to the JSON property `attributes`
|
|
5224
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributes]
|
|
5225
|
+
attr_accessor :attributes
|
|
5226
|
+
|
|
5227
|
+
# The resource name of an ADC Application. Format: projects/`project`/locations/`
|
|
5228
|
+
# location`/spaces/`space`/applications/`application`
|
|
5229
|
+
# Corresponds to the JSON property `name`
|
|
5230
|
+
# @return [String]
|
|
5231
|
+
attr_accessor :name
|
|
5232
|
+
|
|
5233
|
+
def initialize(**args)
|
|
5234
|
+
update!(**args)
|
|
5235
|
+
end
|
|
5236
|
+
|
|
5237
|
+
# Update properties of this object
|
|
5238
|
+
def update!(**args)
|
|
5239
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
|
5240
|
+
@name = args[:name] if args.key?(:name)
|
|
5241
|
+
end
|
|
5242
|
+
end
|
|
5243
|
+
|
|
5244
|
+
# Represents an ADC template associated with the finding.
|
|
5245
|
+
class GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision
|
|
5246
|
+
include Google::Apis::Core::Hashable
|
|
5247
|
+
|
|
5248
|
+
# The resource name of an ADC Application Template Revision. Format: projects/`
|
|
5249
|
+
# project`/locations/`location`/spaces/`space`/applicationTemplates/`
|
|
5250
|
+
# application_template`/revisions/`revision`
|
|
5251
|
+
# Corresponds to the JSON property `name`
|
|
5252
|
+
# @return [String]
|
|
5253
|
+
attr_accessor :name
|
|
5254
|
+
|
|
5255
|
+
def initialize(**args)
|
|
5256
|
+
update!(**args)
|
|
5257
|
+
end
|
|
5258
|
+
|
|
5259
|
+
# Update properties of this object
|
|
5260
|
+
def update!(**args)
|
|
5261
|
+
@name = args[:name] if args.key?(:name)
|
|
5262
|
+
end
|
|
5263
|
+
end
|
|
5264
|
+
|
|
5265
|
+
# Represents an ADC shared template associated with the finding.
|
|
5266
|
+
class GoogleCloudSecuritycenterV2AdcSharedTemplateRevision
|
|
5267
|
+
include Google::Apis::Core::Hashable
|
|
5268
|
+
|
|
5269
|
+
# The resource name of an ADC Shared Template Revision. Format: projects/`
|
|
5270
|
+
# project`/locations/`location`/spaces/`space`/applicationTemplates/`
|
|
5271
|
+
# application_template`/revisions/`revision`
|
|
5272
|
+
# Corresponds to the JSON property `name`
|
|
5273
|
+
# @return [String]
|
|
5274
|
+
attr_accessor :name
|
|
5275
|
+
|
|
5276
|
+
def initialize(**args)
|
|
5277
|
+
update!(**args)
|
|
5278
|
+
end
|
|
5279
|
+
|
|
5280
|
+
# Update properties of this object
|
|
5281
|
+
def update!(**args)
|
|
5282
|
+
@name = args[:name] if args.key?(:name)
|
|
5283
|
+
end
|
|
5284
|
+
end
|
|
5285
|
+
|
|
5132
5286
|
# Details about resources affected by this finding.
|
|
5133
5287
|
class GoogleCloudSecuritycenterV2AffectedResources
|
|
5134
5288
|
include Google::Apis::Core::Hashable
|
|
@@ -8227,6 +8381,21 @@ module Google
|
|
|
8227
8381
|
class GoogleCloudSecuritycenterV2IssueResource
|
|
8228
8382
|
include Google::Apis::Core::Hashable
|
|
8229
8383
|
|
|
8384
|
+
# Represents an ADC application associated with the finding.
|
|
8385
|
+
# Corresponds to the JSON property `adcApplication`
|
|
8386
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceAdcApplication]
|
|
8387
|
+
attr_accessor :adc_application
|
|
8388
|
+
|
|
8389
|
+
# Represents an ADC template associated with the finding.
|
|
8390
|
+
# Corresponds to the JSON property `adcApplicationTemplate`
|
|
8391
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision]
|
|
8392
|
+
attr_accessor :adc_application_template
|
|
8393
|
+
|
|
8394
|
+
# Represents an ADC shared template associated with the finding.
|
|
8395
|
+
# Corresponds to the JSON property `adcSharedTemplate`
|
|
8396
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision]
|
|
8397
|
+
attr_accessor :adc_shared_template
|
|
8398
|
+
|
|
8230
8399
|
# The AppHub application associated with the resource, if any.
|
|
8231
8400
|
# Corresponds to the JSON property `application`
|
|
8232
8401
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplication]
|
|
@@ -8274,6 +8443,9 @@ module Google
|
|
|
8274
8443
|
|
|
8275
8444
|
# Update properties of this object
|
|
8276
8445
|
def update!(**args)
|
|
8446
|
+
@adc_application = args[:adc_application] if args.key?(:adc_application)
|
|
8447
|
+
@adc_application_template = args[:adc_application_template] if args.key?(:adc_application_template)
|
|
8448
|
+
@adc_shared_template = args[:adc_shared_template] if args.key?(:adc_shared_template)
|
|
8277
8449
|
@application = args[:application] if args.key?(:application)
|
|
8278
8450
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
|
8279
8451
|
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
|
@@ -8285,6 +8457,74 @@ module Google
|
|
|
8285
8457
|
end
|
|
8286
8458
|
end
|
|
8287
8459
|
|
|
8460
|
+
# Represents an ADC application associated with the finding.
|
|
8461
|
+
class GoogleCloudSecuritycenterV2IssueResourceAdcApplication
|
|
8462
|
+
include Google::Apis::Core::Hashable
|
|
8463
|
+
|
|
8464
|
+
# Consumer provided attributes for the application
|
|
8465
|
+
# Corresponds to the JSON property `attributes`
|
|
8466
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes]
|
|
8467
|
+
attr_accessor :attributes
|
|
8468
|
+
|
|
8469
|
+
# The resource name of an ADC Application. Format: projects/`project`/locations/`
|
|
8470
|
+
# location`/spaces/`space`/applications/`application`
|
|
8471
|
+
# Corresponds to the JSON property `name`
|
|
8472
|
+
# @return [String]
|
|
8473
|
+
attr_accessor :name
|
|
8474
|
+
|
|
8475
|
+
def initialize(**args)
|
|
8476
|
+
update!(**args)
|
|
8477
|
+
end
|
|
8478
|
+
|
|
8479
|
+
# Update properties of this object
|
|
8480
|
+
def update!(**args)
|
|
8481
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
|
8482
|
+
@name = args[:name] if args.key?(:name)
|
|
8483
|
+
end
|
|
8484
|
+
end
|
|
8485
|
+
|
|
8486
|
+
# Represents an ADC template associated with the finding.
|
|
8487
|
+
class GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision
|
|
8488
|
+
include Google::Apis::Core::Hashable
|
|
8489
|
+
|
|
8490
|
+
# The resource name of an ADC Application Template Revision. Format: projects/`
|
|
8491
|
+
# project`/locations/`location`/spaces/`space`/applicationTemplates/`
|
|
8492
|
+
# application_template`/revisions/`revision`
|
|
8493
|
+
# Corresponds to the JSON property `name`
|
|
8494
|
+
# @return [String]
|
|
8495
|
+
attr_accessor :name
|
|
8496
|
+
|
|
8497
|
+
def initialize(**args)
|
|
8498
|
+
update!(**args)
|
|
8499
|
+
end
|
|
8500
|
+
|
|
8501
|
+
# Update properties of this object
|
|
8502
|
+
def update!(**args)
|
|
8503
|
+
@name = args[:name] if args.key?(:name)
|
|
8504
|
+
end
|
|
8505
|
+
end
|
|
8506
|
+
|
|
8507
|
+
# Represents an ADC shared template associated with the finding.
|
|
8508
|
+
class GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision
|
|
8509
|
+
include Google::Apis::Core::Hashable
|
|
8510
|
+
|
|
8511
|
+
# The resource name of an ADC Shared Template Revision. Format: projects/`
|
|
8512
|
+
# project`/locations/`location`/spaces/`space`/applicationTemplates/`
|
|
8513
|
+
# application_template`/revisions/`revision`
|
|
8514
|
+
# Corresponds to the JSON property `name`
|
|
8515
|
+
# @return [String]
|
|
8516
|
+
attr_accessor :name
|
|
8517
|
+
|
|
8518
|
+
def initialize(**args)
|
|
8519
|
+
update!(**args)
|
|
8520
|
+
end
|
|
8521
|
+
|
|
8522
|
+
# Update properties of this object
|
|
8523
|
+
def update!(**args)
|
|
8524
|
+
@name = args[:name] if args.key?(:name)
|
|
8525
|
+
end
|
|
8526
|
+
end
|
|
8527
|
+
|
|
8288
8528
|
# The AppHub application associated with the resource, if any.
|
|
8289
8529
|
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
|
8290
8530
|
include Google::Apis::Core::Hashable
|
|
@@ -9592,6 +9832,21 @@ module Google
|
|
|
9592
9832
|
class GoogleCloudSecuritycenterV2Resource
|
|
9593
9833
|
include Google::Apis::Core::Hashable
|
|
9594
9834
|
|
|
9835
|
+
# Represents an ADC application associated with the finding.
|
|
9836
|
+
# Corresponds to the JSON property `adcApplication`
|
|
9837
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AdcApplication]
|
|
9838
|
+
attr_accessor :adc_application
|
|
9839
|
+
|
|
9840
|
+
# Represents an ADC template associated with the finding.
|
|
9841
|
+
# Corresponds to the JSON property `adcApplicationTemplate`
|
|
9842
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision]
|
|
9843
|
+
attr_accessor :adc_application_template
|
|
9844
|
+
|
|
9845
|
+
# Represents an ADC shared template associated with the finding.
|
|
9846
|
+
# Corresponds to the JSON property `adcSharedTemplate`
|
|
9847
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AdcSharedTemplateRevision]
|
|
9848
|
+
attr_accessor :adc_shared_template
|
|
9849
|
+
|
|
9595
9850
|
# The App Hub Application associated with the finding's resource.
|
|
9596
9851
|
# Corresponds to the JSON property `application`
|
|
9597
9852
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplication]
|
|
@@ -9671,6 +9926,9 @@ module Google
|
|
|
9671
9926
|
|
|
9672
9927
|
# Update properties of this object
|
|
9673
9928
|
def update!(**args)
|
|
9929
|
+
@adc_application = args[:adc_application] if args.key?(:adc_application)
|
|
9930
|
+
@adc_application_template = args[:adc_application_template] if args.key?(:adc_application_template)
|
|
9931
|
+
@adc_shared_template = args[:adc_shared_template] if args.key?(:adc_shared_template)
|
|
9674
9932
|
@application = args[:application] if args.key?(:application)
|
|
9675
9933
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
|
9676
9934
|
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
|
@@ -12862,6 +13120,21 @@ module Google
|
|
|
12862
13120
|
class Resource
|
|
12863
13121
|
include Google::Apis::Core::Hashable
|
|
12864
13122
|
|
|
13123
|
+
# Represents an ADC application associated with the finding.
|
|
13124
|
+
# Corresponds to the JSON property `adcApplication`
|
|
13125
|
+
# @return [Google::Apis::SecuritycenterV1::AdcApplication]
|
|
13126
|
+
attr_accessor :adc_application
|
|
13127
|
+
|
|
13128
|
+
# Represents an ADC template associated with the finding.
|
|
13129
|
+
# Corresponds to the JSON property `adcApplicationTemplate`
|
|
13130
|
+
# @return [Google::Apis::SecuritycenterV1::AdcApplicationTemplateRevision]
|
|
13131
|
+
attr_accessor :adc_application_template
|
|
13132
|
+
|
|
13133
|
+
# Represents an ADC shared template associated with the finding.
|
|
13134
|
+
# Corresponds to the JSON property `adcSharedTemplate`
|
|
13135
|
+
# @return [Google::Apis::SecuritycenterV1::AdcSharedTemplateRevision]
|
|
13136
|
+
attr_accessor :adc_shared_template
|
|
13137
|
+
|
|
12865
13138
|
# The App Hub Application associated with the finding's resource.
|
|
12866
13139
|
# Corresponds to the JSON property `application`
|
|
12867
13140
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplication]
|
|
@@ -12966,6 +13239,9 @@ module Google
|
|
|
12966
13239
|
|
|
12967
13240
|
# Update properties of this object
|
|
12968
13241
|
def update!(**args)
|
|
13242
|
+
@adc_application = args[:adc_application] if args.key?(:adc_application)
|
|
13243
|
+
@adc_application_template = args[:adc_application_template] if args.key?(:adc_application_template)
|
|
13244
|
+
@adc_shared_template = args[:adc_shared_template] if args.key?(:adc_shared_template)
|
|
12969
13245
|
@application = args[:application] if args.key?(:application)
|
|
12970
13246
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
|
12971
13247
|
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
|
@@ -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.113.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 = "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
|
|
|
@@ -694,6 +712,24 @@ module Google
|
|
|
694
712
|
include Google::Apis::Core::JsonObjectSupport
|
|
695
713
|
end
|
|
696
714
|
|
|
715
|
+
class GoogleCloudSecuritycenterV2AdcApplication
|
|
716
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
717
|
+
|
|
718
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
719
|
+
end
|
|
720
|
+
|
|
721
|
+
class GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision
|
|
722
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
723
|
+
|
|
724
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
725
|
+
end
|
|
726
|
+
|
|
727
|
+
class GoogleCloudSecuritycenterV2AdcSharedTemplateRevision
|
|
728
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
729
|
+
|
|
730
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
731
|
+
end
|
|
732
|
+
|
|
697
733
|
class GoogleCloudSecuritycenterV2AffectedResources
|
|
698
734
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
699
735
|
|
|
@@ -1114,6 +1150,24 @@ module Google
|
|
|
1114
1150
|
include Google::Apis::Core::JsonObjectSupport
|
|
1115
1151
|
end
|
|
1116
1152
|
|
|
1153
|
+
class GoogleCloudSecuritycenterV2IssueResourceAdcApplication
|
|
1154
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1155
|
+
|
|
1156
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1157
|
+
end
|
|
1158
|
+
|
|
1159
|
+
class GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision
|
|
1160
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1161
|
+
|
|
1162
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1163
|
+
end
|
|
1164
|
+
|
|
1165
|
+
class GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision
|
|
1166
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1167
|
+
|
|
1168
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1169
|
+
end
|
|
1170
|
+
|
|
1117
1171
|
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
|
1118
1172
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1119
1173
|
|
|
@@ -2167,6 +2221,29 @@ module Google
|
|
|
2167
2221
|
end
|
|
2168
2222
|
end
|
|
2169
2223
|
|
|
2224
|
+
class AdcApplication
|
|
2225
|
+
# @private
|
|
2226
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2227
|
+
property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplicationAttributes::Representation
|
|
2228
|
+
|
|
2229
|
+
property :name, as: 'name'
|
|
2230
|
+
end
|
|
2231
|
+
end
|
|
2232
|
+
|
|
2233
|
+
class AdcApplicationTemplateRevision
|
|
2234
|
+
# @private
|
|
2235
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2236
|
+
property :name, as: 'name'
|
|
2237
|
+
end
|
|
2238
|
+
end
|
|
2239
|
+
|
|
2240
|
+
class AdcSharedTemplateRevision
|
|
2241
|
+
# @private
|
|
2242
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2243
|
+
property :name, as: 'name'
|
|
2244
|
+
end
|
|
2245
|
+
end
|
|
2246
|
+
|
|
2170
2247
|
class AffectedResources
|
|
2171
2248
|
# @private
|
|
2172
2249
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3167,6 +3244,12 @@ module Google
|
|
|
3167
3244
|
class GoogleCloudSecuritycenterV1Resource
|
|
3168
3245
|
# @private
|
|
3169
3246
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3247
|
+
property :adc_application, as: 'adcApplication', class: Google::Apis::SecuritycenterV1::AdcApplication, decorator: Google::Apis::SecuritycenterV1::AdcApplication::Representation
|
|
3248
|
+
|
|
3249
|
+
property :adc_application_template, as: 'adcApplicationTemplate', class: Google::Apis::SecuritycenterV1::AdcApplicationTemplateRevision, decorator: Google::Apis::SecuritycenterV1::AdcApplicationTemplateRevision::Representation
|
|
3250
|
+
|
|
3251
|
+
property :adc_shared_template, as: 'adcSharedTemplate', class: Google::Apis::SecuritycenterV1::AdcSharedTemplateRevision, decorator: Google::Apis::SecuritycenterV1::AdcSharedTemplateRevision::Representation
|
|
3252
|
+
|
|
3170
3253
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplication, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplication::Representation
|
|
3171
3254
|
|
|
3172
3255
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1::AwsMetadata, decorator: Google::Apis::SecuritycenterV1::AwsMetadata::Representation
|
|
@@ -3409,6 +3492,29 @@ module Google
|
|
|
3409
3492
|
end
|
|
3410
3493
|
end
|
|
3411
3494
|
|
|
3495
|
+
class GoogleCloudSecuritycenterV2AdcApplication
|
|
3496
|
+
# @private
|
|
3497
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3498
|
+
property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplicationAttributes::Representation
|
|
3499
|
+
|
|
3500
|
+
property :name, as: 'name'
|
|
3501
|
+
end
|
|
3502
|
+
end
|
|
3503
|
+
|
|
3504
|
+
class GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision
|
|
3505
|
+
# @private
|
|
3506
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3507
|
+
property :name, as: 'name'
|
|
3508
|
+
end
|
|
3509
|
+
end
|
|
3510
|
+
|
|
3511
|
+
class GoogleCloudSecuritycenterV2AdcSharedTemplateRevision
|
|
3512
|
+
# @private
|
|
3513
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3514
|
+
property :name, as: 'name'
|
|
3515
|
+
end
|
|
3516
|
+
end
|
|
3517
|
+
|
|
3412
3518
|
class GoogleCloudSecuritycenterV2AffectedResources
|
|
3413
3519
|
# @private
|
|
3414
3520
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4227,6 +4333,12 @@ module Google
|
|
|
4227
4333
|
class GoogleCloudSecuritycenterV2IssueResource
|
|
4228
4334
|
# @private
|
|
4229
4335
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4336
|
+
property :adc_application, as: 'adcApplication', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceAdcApplication, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceAdcApplication::Representation
|
|
4337
|
+
|
|
4338
|
+
property :adc_application_template, as: 'adcApplicationTemplate', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision::Representation
|
|
4339
|
+
|
|
4340
|
+
property :adc_shared_template, as: 'adcSharedTemplate', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision::Representation
|
|
4341
|
+
|
|
4230
4342
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplication, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplication::Representation
|
|
4231
4343
|
|
|
4232
4344
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata::Representation
|
|
@@ -4242,6 +4354,29 @@ module Google
|
|
|
4242
4354
|
end
|
|
4243
4355
|
end
|
|
4244
4356
|
|
|
4357
|
+
class GoogleCloudSecuritycenterV2IssueResourceAdcApplication
|
|
4358
|
+
# @private
|
|
4359
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4360
|
+
property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes::Representation
|
|
4361
|
+
|
|
4362
|
+
property :name, as: 'name'
|
|
4363
|
+
end
|
|
4364
|
+
end
|
|
4365
|
+
|
|
4366
|
+
class GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision
|
|
4367
|
+
# @private
|
|
4368
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4369
|
+
property :name, as: 'name'
|
|
4370
|
+
end
|
|
4371
|
+
end
|
|
4372
|
+
|
|
4373
|
+
class GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision
|
|
4374
|
+
# @private
|
|
4375
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4376
|
+
property :name, as: 'name'
|
|
4377
|
+
end
|
|
4378
|
+
end
|
|
4379
|
+
|
|
4245
4380
|
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
|
4246
4381
|
# @private
|
|
4247
4382
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4629,6 +4764,12 @@ module Google
|
|
|
4629
4764
|
class GoogleCloudSecuritycenterV2Resource
|
|
4630
4765
|
# @private
|
|
4631
4766
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4767
|
+
property :adc_application, as: 'adcApplication', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AdcApplication, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AdcApplication::Representation
|
|
4768
|
+
|
|
4769
|
+
property :adc_application_template, as: 'adcApplicationTemplate', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision::Representation
|
|
4770
|
+
|
|
4771
|
+
property :adc_shared_template, as: 'adcSharedTemplate', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AdcSharedTemplateRevision, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AdcSharedTemplateRevision::Representation
|
|
4772
|
+
|
|
4632
4773
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplication, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ResourceApplication::Representation
|
|
4633
4774
|
|
|
4634
4775
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AwsMetadata, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AwsMetadata::Representation
|
|
@@ -5516,6 +5657,12 @@ module Google
|
|
|
5516
5657
|
class Resource
|
|
5517
5658
|
# @private
|
|
5518
5659
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5660
|
+
property :adc_application, as: 'adcApplication', class: Google::Apis::SecuritycenterV1::AdcApplication, decorator: Google::Apis::SecuritycenterV1::AdcApplication::Representation
|
|
5661
|
+
|
|
5662
|
+
property :adc_application_template, as: 'adcApplicationTemplate', class: Google::Apis::SecuritycenterV1::AdcApplicationTemplateRevision, decorator: Google::Apis::SecuritycenterV1::AdcApplicationTemplateRevision::Representation
|
|
5663
|
+
|
|
5664
|
+
property :adc_shared_template, as: 'adcSharedTemplate', class: Google::Apis::SecuritycenterV1::AdcSharedTemplateRevision, decorator: Google::Apis::SecuritycenterV1::AdcSharedTemplateRevision::Representation
|
|
5665
|
+
|
|
5519
5666
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplication, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceApplication::Representation
|
|
5520
5667
|
|
|
5521
5668
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1::AwsMetadata, decorator: Google::Apis::SecuritycenterV1::AwsMetadata::Representation
|
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.113.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.113.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:
|