google-apis-securitycenter_v1beta2 0.94.0 → 0.95.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: ed8f5fba8c13b71351bf44d2f3245f172cb5fa12db73f62568496b2626b01fc7
|
|
4
|
+
data.tar.gz: 6a48258a1d7be4a68f16d37f00d513e4ebae10d51f4092af0c5358b6f92e2f44
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 978cb6ba1c5223a2416b7bafd3420c81bdc92ca82dc6ccf1394ec38d523d522a3c50b65005105efc73f3e7590db9c01b369d67e1a921a0b51a9054f5192b151d
|
|
7
|
+
data.tar.gz: 3daa049c9bbc7cad7b224d54ec781fc9684f55bd7899c93bc0998a7d7e44961d8aab6a2d14fea7317f4fe0648a0590856e24501f6a38fae9f7ea3e8c6f66589d
|
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::SecuritycenterV1beta2::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
|
|
@@ -3451,6 +3519,21 @@ module Google
|
|
|
3451
3519
|
class GoogleCloudSecuritycenterV1Resource
|
|
3452
3520
|
include Google::Apis::Core::Hashable
|
|
3453
3521
|
|
|
3522
|
+
# Represents an ADC application associated with the finding.
|
|
3523
|
+
# Corresponds to the JSON property `adcApplication`
|
|
3524
|
+
# @return [Google::Apis::SecuritycenterV1beta2::AdcApplication]
|
|
3525
|
+
attr_accessor :adc_application
|
|
3526
|
+
|
|
3527
|
+
# Represents an ADC template associated with the finding.
|
|
3528
|
+
# Corresponds to the JSON property `adcApplicationTemplate`
|
|
3529
|
+
# @return [Google::Apis::SecuritycenterV1beta2::AdcApplicationTemplateRevision]
|
|
3530
|
+
attr_accessor :adc_application_template
|
|
3531
|
+
|
|
3532
|
+
# Represents an ADC shared template associated with the finding.
|
|
3533
|
+
# Corresponds to the JSON property `adcSharedTemplate`
|
|
3534
|
+
# @return [Google::Apis::SecuritycenterV1beta2::AdcSharedTemplateRevision]
|
|
3535
|
+
attr_accessor :adc_shared_template
|
|
3536
|
+
|
|
3454
3537
|
# The App Hub Application associated with the finding's resource.
|
|
3455
3538
|
# Corresponds to the JSON property `application`
|
|
3456
3539
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplication]
|
|
@@ -3558,6 +3641,9 @@ module Google
|
|
|
3558
3641
|
|
|
3559
3642
|
# Update properties of this object
|
|
3560
3643
|
def update!(**args)
|
|
3644
|
+
@adc_application = args[:adc_application] if args.key?(:adc_application)
|
|
3645
|
+
@adc_application_template = args[:adc_application_template] if args.key?(:adc_application_template)
|
|
3646
|
+
@adc_shared_template = args[:adc_shared_template] if args.key?(:adc_shared_template)
|
|
3561
3647
|
@application = args[:application] if args.key?(:application)
|
|
3562
3648
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
|
3563
3649
|
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
|
@@ -4463,6 +4549,74 @@ module Google
|
|
|
4463
4549
|
end
|
|
4464
4550
|
end
|
|
4465
4551
|
|
|
4552
|
+
# Represents an ADC application associated with the finding.
|
|
4553
|
+
class GoogleCloudSecuritycenterV2AdcApplication
|
|
4554
|
+
include Google::Apis::Core::Hashable
|
|
4555
|
+
|
|
4556
|
+
# Consumer provided attributes for the application
|
|
4557
|
+
# Corresponds to the JSON property `attributes`
|
|
4558
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributes]
|
|
4559
|
+
attr_accessor :attributes
|
|
4560
|
+
|
|
4561
|
+
# The resource name of an ADC Application. Format: projects/`project`/locations/`
|
|
4562
|
+
# location`/spaces/`space`/applications/`application`
|
|
4563
|
+
# Corresponds to the JSON property `name`
|
|
4564
|
+
# @return [String]
|
|
4565
|
+
attr_accessor :name
|
|
4566
|
+
|
|
4567
|
+
def initialize(**args)
|
|
4568
|
+
update!(**args)
|
|
4569
|
+
end
|
|
4570
|
+
|
|
4571
|
+
# Update properties of this object
|
|
4572
|
+
def update!(**args)
|
|
4573
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
|
4574
|
+
@name = args[:name] if args.key?(:name)
|
|
4575
|
+
end
|
|
4576
|
+
end
|
|
4577
|
+
|
|
4578
|
+
# Represents an ADC template associated with the finding.
|
|
4579
|
+
class GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision
|
|
4580
|
+
include Google::Apis::Core::Hashable
|
|
4581
|
+
|
|
4582
|
+
# The resource name of an ADC Application Template Revision. Format: projects/`
|
|
4583
|
+
# project`/locations/`location`/spaces/`space`/applicationTemplates/`
|
|
4584
|
+
# application_template`/revisions/`revision`
|
|
4585
|
+
# Corresponds to the JSON property `name`
|
|
4586
|
+
# @return [String]
|
|
4587
|
+
attr_accessor :name
|
|
4588
|
+
|
|
4589
|
+
def initialize(**args)
|
|
4590
|
+
update!(**args)
|
|
4591
|
+
end
|
|
4592
|
+
|
|
4593
|
+
# Update properties of this object
|
|
4594
|
+
def update!(**args)
|
|
4595
|
+
@name = args[:name] if args.key?(:name)
|
|
4596
|
+
end
|
|
4597
|
+
end
|
|
4598
|
+
|
|
4599
|
+
# Represents an ADC shared template associated with the finding.
|
|
4600
|
+
class GoogleCloudSecuritycenterV2AdcSharedTemplateRevision
|
|
4601
|
+
include Google::Apis::Core::Hashable
|
|
4602
|
+
|
|
4603
|
+
# The resource name of an ADC Shared Template Revision. Format: projects/`
|
|
4604
|
+
# project`/locations/`location`/spaces/`space`/applicationTemplates/`
|
|
4605
|
+
# application_template`/revisions/`revision`
|
|
4606
|
+
# Corresponds to the JSON property `name`
|
|
4607
|
+
# @return [String]
|
|
4608
|
+
attr_accessor :name
|
|
4609
|
+
|
|
4610
|
+
def initialize(**args)
|
|
4611
|
+
update!(**args)
|
|
4612
|
+
end
|
|
4613
|
+
|
|
4614
|
+
# Update properties of this object
|
|
4615
|
+
def update!(**args)
|
|
4616
|
+
@name = args[:name] if args.key?(:name)
|
|
4617
|
+
end
|
|
4618
|
+
end
|
|
4619
|
+
|
|
4466
4620
|
# Details about resources affected by this finding.
|
|
4467
4621
|
class GoogleCloudSecuritycenterV2AffectedResources
|
|
4468
4622
|
include Google::Apis::Core::Hashable
|
|
@@ -7561,6 +7715,21 @@ module Google
|
|
|
7561
7715
|
class GoogleCloudSecuritycenterV2IssueResource
|
|
7562
7716
|
include Google::Apis::Core::Hashable
|
|
7563
7717
|
|
|
7718
|
+
# Represents an ADC application associated with the finding.
|
|
7719
|
+
# Corresponds to the JSON property `adcApplication`
|
|
7720
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAdcApplication]
|
|
7721
|
+
attr_accessor :adc_application
|
|
7722
|
+
|
|
7723
|
+
# Represents an ADC template associated with the finding.
|
|
7724
|
+
# Corresponds to the JSON property `adcApplicationTemplate`
|
|
7725
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision]
|
|
7726
|
+
attr_accessor :adc_application_template
|
|
7727
|
+
|
|
7728
|
+
# Represents an ADC shared template associated with the finding.
|
|
7729
|
+
# Corresponds to the JSON property `adcSharedTemplate`
|
|
7730
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision]
|
|
7731
|
+
attr_accessor :adc_shared_template
|
|
7732
|
+
|
|
7564
7733
|
# The AppHub application associated with the resource, if any.
|
|
7565
7734
|
# Corresponds to the JSON property `application`
|
|
7566
7735
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplication]
|
|
@@ -7608,6 +7777,9 @@ module Google
|
|
|
7608
7777
|
|
|
7609
7778
|
# Update properties of this object
|
|
7610
7779
|
def update!(**args)
|
|
7780
|
+
@adc_application = args[:adc_application] if args.key?(:adc_application)
|
|
7781
|
+
@adc_application_template = args[:adc_application_template] if args.key?(:adc_application_template)
|
|
7782
|
+
@adc_shared_template = args[:adc_shared_template] if args.key?(:adc_shared_template)
|
|
7611
7783
|
@application = args[:application] if args.key?(:application)
|
|
7612
7784
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
|
7613
7785
|
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
|
@@ -7619,6 +7791,74 @@ module Google
|
|
|
7619
7791
|
end
|
|
7620
7792
|
end
|
|
7621
7793
|
|
|
7794
|
+
# Represents an ADC application associated with the finding.
|
|
7795
|
+
class GoogleCloudSecuritycenterV2IssueResourceAdcApplication
|
|
7796
|
+
include Google::Apis::Core::Hashable
|
|
7797
|
+
|
|
7798
|
+
# Consumer provided attributes for the application
|
|
7799
|
+
# Corresponds to the JSON property `attributes`
|
|
7800
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes]
|
|
7801
|
+
attr_accessor :attributes
|
|
7802
|
+
|
|
7803
|
+
# The resource name of an ADC Application. Format: projects/`project`/locations/`
|
|
7804
|
+
# location`/spaces/`space`/applications/`application`
|
|
7805
|
+
# Corresponds to the JSON property `name`
|
|
7806
|
+
# @return [String]
|
|
7807
|
+
attr_accessor :name
|
|
7808
|
+
|
|
7809
|
+
def initialize(**args)
|
|
7810
|
+
update!(**args)
|
|
7811
|
+
end
|
|
7812
|
+
|
|
7813
|
+
# Update properties of this object
|
|
7814
|
+
def update!(**args)
|
|
7815
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
|
7816
|
+
@name = args[:name] if args.key?(:name)
|
|
7817
|
+
end
|
|
7818
|
+
end
|
|
7819
|
+
|
|
7820
|
+
# Represents an ADC template associated with the finding.
|
|
7821
|
+
class GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision
|
|
7822
|
+
include Google::Apis::Core::Hashable
|
|
7823
|
+
|
|
7824
|
+
# The resource name of an ADC Application Template Revision. Format: projects/`
|
|
7825
|
+
# project`/locations/`location`/spaces/`space`/applicationTemplates/`
|
|
7826
|
+
# application_template`/revisions/`revision`
|
|
7827
|
+
# Corresponds to the JSON property `name`
|
|
7828
|
+
# @return [String]
|
|
7829
|
+
attr_accessor :name
|
|
7830
|
+
|
|
7831
|
+
def initialize(**args)
|
|
7832
|
+
update!(**args)
|
|
7833
|
+
end
|
|
7834
|
+
|
|
7835
|
+
# Update properties of this object
|
|
7836
|
+
def update!(**args)
|
|
7837
|
+
@name = args[:name] if args.key?(:name)
|
|
7838
|
+
end
|
|
7839
|
+
end
|
|
7840
|
+
|
|
7841
|
+
# Represents an ADC shared template associated with the finding.
|
|
7842
|
+
class GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision
|
|
7843
|
+
include Google::Apis::Core::Hashable
|
|
7844
|
+
|
|
7845
|
+
# The resource name of an ADC Shared Template Revision. Format: projects/`
|
|
7846
|
+
# project`/locations/`location`/spaces/`space`/applicationTemplates/`
|
|
7847
|
+
# application_template`/revisions/`revision`
|
|
7848
|
+
# Corresponds to the JSON property `name`
|
|
7849
|
+
# @return [String]
|
|
7850
|
+
attr_accessor :name
|
|
7851
|
+
|
|
7852
|
+
def initialize(**args)
|
|
7853
|
+
update!(**args)
|
|
7854
|
+
end
|
|
7855
|
+
|
|
7856
|
+
# Update properties of this object
|
|
7857
|
+
def update!(**args)
|
|
7858
|
+
@name = args[:name] if args.key?(:name)
|
|
7859
|
+
end
|
|
7860
|
+
end
|
|
7861
|
+
|
|
7622
7862
|
# The AppHub application associated with the resource, if any.
|
|
7623
7863
|
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
|
7624
7864
|
include Google::Apis::Core::Hashable
|
|
@@ -8926,6 +9166,21 @@ module Google
|
|
|
8926
9166
|
class GoogleCloudSecuritycenterV2Resource
|
|
8927
9167
|
include Google::Apis::Core::Hashable
|
|
8928
9168
|
|
|
9169
|
+
# Represents an ADC application associated with the finding.
|
|
9170
|
+
# Corresponds to the JSON property `adcApplication`
|
|
9171
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AdcApplication]
|
|
9172
|
+
attr_accessor :adc_application
|
|
9173
|
+
|
|
9174
|
+
# Represents an ADC template associated with the finding.
|
|
9175
|
+
# Corresponds to the JSON property `adcApplicationTemplate`
|
|
9176
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision]
|
|
9177
|
+
attr_accessor :adc_application_template
|
|
9178
|
+
|
|
9179
|
+
# Represents an ADC shared template associated with the finding.
|
|
9180
|
+
# Corresponds to the JSON property `adcSharedTemplate`
|
|
9181
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AdcSharedTemplateRevision]
|
|
9182
|
+
attr_accessor :adc_shared_template
|
|
9183
|
+
|
|
8929
9184
|
# The App Hub Application associated with the finding's resource.
|
|
8930
9185
|
# Corresponds to the JSON property `application`
|
|
8931
9186
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplication]
|
|
@@ -9005,6 +9260,9 @@ module Google
|
|
|
9005
9260
|
|
|
9006
9261
|
# Update properties of this object
|
|
9007
9262
|
def update!(**args)
|
|
9263
|
+
@adc_application = args[:adc_application] if args.key?(:adc_application)
|
|
9264
|
+
@adc_application_template = args[:adc_application_template] if args.key?(:adc_application_template)
|
|
9265
|
+
@adc_shared_template = args[:adc_shared_template] if args.key?(:adc_shared_template)
|
|
9008
9266
|
@application = args[:application] if args.key?(:application)
|
|
9009
9267
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
|
9010
9268
|
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.95.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
|
|
|
@@ -598,6 +616,24 @@ module Google
|
|
|
598
616
|
include Google::Apis::Core::JsonObjectSupport
|
|
599
617
|
end
|
|
600
618
|
|
|
619
|
+
class GoogleCloudSecuritycenterV2AdcApplication
|
|
620
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
621
|
+
|
|
622
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
623
|
+
end
|
|
624
|
+
|
|
625
|
+
class GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision
|
|
626
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
627
|
+
|
|
628
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
629
|
+
end
|
|
630
|
+
|
|
631
|
+
class GoogleCloudSecuritycenterV2AdcSharedTemplateRevision
|
|
632
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
633
|
+
|
|
634
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
635
|
+
end
|
|
636
|
+
|
|
601
637
|
class GoogleCloudSecuritycenterV2AffectedResources
|
|
602
638
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
603
639
|
|
|
@@ -1018,6 +1054,24 @@ module Google
|
|
|
1018
1054
|
include Google::Apis::Core::JsonObjectSupport
|
|
1019
1055
|
end
|
|
1020
1056
|
|
|
1057
|
+
class GoogleCloudSecuritycenterV2IssueResourceAdcApplication
|
|
1058
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1059
|
+
|
|
1060
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1061
|
+
end
|
|
1062
|
+
|
|
1063
|
+
class GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision
|
|
1064
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1065
|
+
|
|
1066
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1067
|
+
end
|
|
1068
|
+
|
|
1069
|
+
class GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision
|
|
1070
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1071
|
+
|
|
1072
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1073
|
+
end
|
|
1074
|
+
|
|
1021
1075
|
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
|
1022
1076
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1023
1077
|
|
|
@@ -1807,6 +1861,29 @@ module Google
|
|
|
1807
1861
|
end
|
|
1808
1862
|
end
|
|
1809
1863
|
|
|
1864
|
+
class AdcApplication
|
|
1865
|
+
# @private
|
|
1866
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1867
|
+
property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplicationAttributes::Representation
|
|
1868
|
+
|
|
1869
|
+
property :name, as: 'name'
|
|
1870
|
+
end
|
|
1871
|
+
end
|
|
1872
|
+
|
|
1873
|
+
class AdcApplicationTemplateRevision
|
|
1874
|
+
# @private
|
|
1875
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1876
|
+
property :name, as: 'name'
|
|
1877
|
+
end
|
|
1878
|
+
end
|
|
1879
|
+
|
|
1880
|
+
class AdcSharedTemplateRevision
|
|
1881
|
+
# @private
|
|
1882
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1883
|
+
property :name, as: 'name'
|
|
1884
|
+
end
|
|
1885
|
+
end
|
|
1886
|
+
|
|
1810
1887
|
class AffectedResources
|
|
1811
1888
|
# @private
|
|
1812
1889
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2646,6 +2723,12 @@ module Google
|
|
|
2646
2723
|
class GoogleCloudSecuritycenterV1Resource
|
|
2647
2724
|
# @private
|
|
2648
2725
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2726
|
+
property :adc_application, as: 'adcApplication', class: Google::Apis::SecuritycenterV1beta2::AdcApplication, decorator: Google::Apis::SecuritycenterV1beta2::AdcApplication::Representation
|
|
2727
|
+
|
|
2728
|
+
property :adc_application_template, as: 'adcApplicationTemplate', class: Google::Apis::SecuritycenterV1beta2::AdcApplicationTemplateRevision, decorator: Google::Apis::SecuritycenterV1beta2::AdcApplicationTemplateRevision::Representation
|
|
2729
|
+
|
|
2730
|
+
property :adc_shared_template, as: 'adcSharedTemplate', class: Google::Apis::SecuritycenterV1beta2::AdcSharedTemplateRevision, decorator: Google::Apis::SecuritycenterV1beta2::AdcSharedTemplateRevision::Representation
|
|
2731
|
+
|
|
2649
2732
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplication, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ResourceApplication::Representation
|
|
2650
2733
|
|
|
2651
2734
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta2::AwsMetadata, decorator: Google::Apis::SecuritycenterV1beta2::AwsMetadata::Representation
|
|
@@ -2888,6 +2971,29 @@ module Google
|
|
|
2888
2971
|
end
|
|
2889
2972
|
end
|
|
2890
2973
|
|
|
2974
|
+
class GoogleCloudSecuritycenterV2AdcApplication
|
|
2975
|
+
# @private
|
|
2976
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2977
|
+
property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplicationAttributes::Representation
|
|
2978
|
+
|
|
2979
|
+
property :name, as: 'name'
|
|
2980
|
+
end
|
|
2981
|
+
end
|
|
2982
|
+
|
|
2983
|
+
class GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision
|
|
2984
|
+
# @private
|
|
2985
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2986
|
+
property :name, as: 'name'
|
|
2987
|
+
end
|
|
2988
|
+
end
|
|
2989
|
+
|
|
2990
|
+
class GoogleCloudSecuritycenterV2AdcSharedTemplateRevision
|
|
2991
|
+
# @private
|
|
2992
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2993
|
+
property :name, as: 'name'
|
|
2994
|
+
end
|
|
2995
|
+
end
|
|
2996
|
+
|
|
2891
2997
|
class GoogleCloudSecuritycenterV2AffectedResources
|
|
2892
2998
|
# @private
|
|
2893
2999
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3706,6 +3812,12 @@ module Google
|
|
|
3706
3812
|
class GoogleCloudSecuritycenterV2IssueResource
|
|
3707
3813
|
# @private
|
|
3708
3814
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3815
|
+
property :adc_application, as: 'adcApplication', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAdcApplication, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAdcApplication::Representation
|
|
3816
|
+
|
|
3817
|
+
property :adc_application_template, as: 'adcApplicationTemplate', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision::Representation
|
|
3818
|
+
|
|
3819
|
+
property :adc_shared_template, as: 'adcSharedTemplate', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision::Representation
|
|
3820
|
+
|
|
3709
3821
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplication, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplication::Representation
|
|
3710
3822
|
|
|
3711
3823
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata::Representation
|
|
@@ -3721,6 +3833,29 @@ module Google
|
|
|
3721
3833
|
end
|
|
3722
3834
|
end
|
|
3723
3835
|
|
|
3836
|
+
class GoogleCloudSecuritycenterV2IssueResourceAdcApplication
|
|
3837
|
+
# @private
|
|
3838
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3839
|
+
property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes::Representation
|
|
3840
|
+
|
|
3841
|
+
property :name, as: 'name'
|
|
3842
|
+
end
|
|
3843
|
+
end
|
|
3844
|
+
|
|
3845
|
+
class GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision
|
|
3846
|
+
# @private
|
|
3847
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3848
|
+
property :name, as: 'name'
|
|
3849
|
+
end
|
|
3850
|
+
end
|
|
3851
|
+
|
|
3852
|
+
class GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision
|
|
3853
|
+
# @private
|
|
3854
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3855
|
+
property :name, as: 'name'
|
|
3856
|
+
end
|
|
3857
|
+
end
|
|
3858
|
+
|
|
3724
3859
|
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
|
3725
3860
|
# @private
|
|
3726
3861
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4108,6 +4243,12 @@ module Google
|
|
|
4108
4243
|
class GoogleCloudSecuritycenterV2Resource
|
|
4109
4244
|
# @private
|
|
4110
4245
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4246
|
+
property :adc_application, as: 'adcApplication', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AdcApplication, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AdcApplication::Representation
|
|
4247
|
+
|
|
4248
|
+
property :adc_application_template, as: 'adcApplicationTemplate', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision::Representation
|
|
4249
|
+
|
|
4250
|
+
property :adc_shared_template, as: 'adcSharedTemplate', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AdcSharedTemplateRevision, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AdcSharedTemplateRevision::Representation
|
|
4251
|
+
|
|
4111
4252
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplication, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ResourceApplication::Representation
|
|
4112
4253
|
|
|
4113
4254
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AwsMetadata, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2AwsMetadata::Representation
|
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.
|
|
4
|
+
version: 0.95.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.95.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:
|