google-apis-securitycenter_v1beta1 0.99.0 → 0.100.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/securitycenter_v1beta1/classes.rb +279 -2
- data/lib/google/apis/securitycenter_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/securitycenter_v1beta1/representations.rb +158 -0
- data/lib/google/apis/securitycenter_v1beta1/service.rb +6 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c1355c635d6e911b8c0ad590a590b8bc03d80db7bcd3a350174dc8947c07869d
|
|
4
|
+
data.tar.gz: 3d548ad4edb04dd8c52b0806891c52088902c2bc311f1156903d1e0b5a4309a0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4eff9454075fe9771e2ef19f5d6d6f24eb9563f5d7280d083e5d9e9706a53e9d56afeca0fa054ee55d6717f56471267ceb75137d57ae7b87ce47d0cf64ca5ca3
|
|
7
|
+
data.tar.gz: a4e318a18a9af04b7fffa85768cc96137f37374f2408d843cf6a39eeb9fc45b66319c19ffd181877630d297c4746eff125680d34962d212fd908b831db146e0f
|
data/CHANGELOG.md
CHANGED
|
@@ -269,6 +269,11 @@ module Google
|
|
|
269
269
|
# @return [String]
|
|
270
270
|
attr_accessor :publisher
|
|
271
271
|
|
|
272
|
+
# The purpose of the model, for example, "Inteference" or "Training".
|
|
273
|
+
# Corresponds to the JSON property `usageCategory`
|
|
274
|
+
# @return [String]
|
|
275
|
+
attr_accessor :usage_category
|
|
276
|
+
|
|
272
277
|
def initialize(**args)
|
|
273
278
|
update!(**args)
|
|
274
279
|
end
|
|
@@ -282,6 +287,7 @@ module Google
|
|
|
282
287
|
@location = args[:location] if args.key?(:location)
|
|
283
288
|
@name = args[:name] if args.key?(:name)
|
|
284
289
|
@publisher = args[:publisher] if args.key?(:publisher)
|
|
290
|
+
@usage_category = args[:usage_category] if args.key?(:usage_category)
|
|
285
291
|
end
|
|
286
292
|
end
|
|
287
293
|
|
|
@@ -3552,6 +3558,11 @@ module Google
|
|
|
3552
3558
|
class GoogleCloudSecuritycenterV1Resource
|
|
3553
3559
|
include Google::Apis::Core::Hashable
|
|
3554
3560
|
|
|
3561
|
+
# The App Hub Application associated with the finding's resource.
|
|
3562
|
+
# Corresponds to the JSON property `application`
|
|
3563
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplication]
|
|
3564
|
+
attr_accessor :application
|
|
3565
|
+
|
|
3555
3566
|
# AWS metadata associated with the resource, only applicable if the finding's
|
|
3556
3567
|
# cloud provider is Amazon Web Services.
|
|
3557
3568
|
# Corresponds to the JSON property `awsMetadata`
|
|
@@ -3654,6 +3665,7 @@ module Google
|
|
|
3654
3665
|
|
|
3655
3666
|
# Update properties of this object
|
|
3656
3667
|
def update!(**args)
|
|
3668
|
+
@application = args[:application] if args.key?(:application)
|
|
3657
3669
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
|
3658
3670
|
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
|
3659
3671
|
@cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
|
|
@@ -3673,6 +3685,132 @@ module Google
|
|
|
3673
3685
|
end
|
|
3674
3686
|
end
|
|
3675
3687
|
|
|
3688
|
+
# The App Hub Application associated with the finding's resource.
|
|
3689
|
+
class GoogleCloudSecuritycenterV1ResourceApplication
|
|
3690
|
+
include Google::Apis::Core::Hashable
|
|
3691
|
+
|
|
3692
|
+
# Consumer provided attributes for the application
|
|
3693
|
+
# Corresponds to the JSON property `attributes`
|
|
3694
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributes]
|
|
3695
|
+
attr_accessor :attributes
|
|
3696
|
+
|
|
3697
|
+
# The resource name of an Application. Format: `projects/`host-project-id`/
|
|
3698
|
+
# locations/`location`/applications/`application-id``
|
|
3699
|
+
# Corresponds to the JSON property `name`
|
|
3700
|
+
# @return [String]
|
|
3701
|
+
attr_accessor :name
|
|
3702
|
+
|
|
3703
|
+
def initialize(**args)
|
|
3704
|
+
update!(**args)
|
|
3705
|
+
end
|
|
3706
|
+
|
|
3707
|
+
# Update properties of this object
|
|
3708
|
+
def update!(**args)
|
|
3709
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
|
3710
|
+
@name = args[:name] if args.key?(:name)
|
|
3711
|
+
end
|
|
3712
|
+
end
|
|
3713
|
+
|
|
3714
|
+
# Consumer provided attributes for the application
|
|
3715
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributes
|
|
3716
|
+
include Google::Apis::Core::Hashable
|
|
3717
|
+
|
|
3718
|
+
# Business team that ensures user needs are met and value is delivered
|
|
3719
|
+
# Corresponds to the JSON property `businessOwners`
|
|
3720
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo>]
|
|
3721
|
+
attr_accessor :business_owners
|
|
3722
|
+
|
|
3723
|
+
# Criticality of the Application, Service, or Workload
|
|
3724
|
+
# Corresponds to the JSON property `criticality`
|
|
3725
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality]
|
|
3726
|
+
attr_accessor :criticality
|
|
3727
|
+
|
|
3728
|
+
# Developer team that owns development and coding.
|
|
3729
|
+
# Corresponds to the JSON property `developerOwners`
|
|
3730
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo>]
|
|
3731
|
+
attr_accessor :developer_owners
|
|
3732
|
+
|
|
3733
|
+
# Environment of the Application, Service, or Workload
|
|
3734
|
+
# Corresponds to the JSON property `environment`
|
|
3735
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment]
|
|
3736
|
+
attr_accessor :environment
|
|
3737
|
+
|
|
3738
|
+
# Operator team that ensures runtime and operations.
|
|
3739
|
+
# Corresponds to the JSON property `operatorOwners`
|
|
3740
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo>]
|
|
3741
|
+
attr_accessor :operator_owners
|
|
3742
|
+
|
|
3743
|
+
def initialize(**args)
|
|
3744
|
+
update!(**args)
|
|
3745
|
+
end
|
|
3746
|
+
|
|
3747
|
+
# Update properties of this object
|
|
3748
|
+
def update!(**args)
|
|
3749
|
+
@business_owners = args[:business_owners] if args.key?(:business_owners)
|
|
3750
|
+
@criticality = args[:criticality] if args.key?(:criticality)
|
|
3751
|
+
@developer_owners = args[:developer_owners] if args.key?(:developer_owners)
|
|
3752
|
+
@environment = args[:environment] if args.key?(:environment)
|
|
3753
|
+
@operator_owners = args[:operator_owners] if args.key?(:operator_owners)
|
|
3754
|
+
end
|
|
3755
|
+
end
|
|
3756
|
+
|
|
3757
|
+
# Contact information of stakeholders.
|
|
3758
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo
|
|
3759
|
+
include Google::Apis::Core::Hashable
|
|
3760
|
+
|
|
3761
|
+
# Email address of the contacts.
|
|
3762
|
+
# Corresponds to the JSON property `email`
|
|
3763
|
+
# @return [String]
|
|
3764
|
+
attr_accessor :email
|
|
3765
|
+
|
|
3766
|
+
def initialize(**args)
|
|
3767
|
+
update!(**args)
|
|
3768
|
+
end
|
|
3769
|
+
|
|
3770
|
+
# Update properties of this object
|
|
3771
|
+
def update!(**args)
|
|
3772
|
+
@email = args[:email] if args.key?(:email)
|
|
3773
|
+
end
|
|
3774
|
+
end
|
|
3775
|
+
|
|
3776
|
+
# Criticality of the Application, Service, or Workload
|
|
3777
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality
|
|
3778
|
+
include Google::Apis::Core::Hashable
|
|
3779
|
+
|
|
3780
|
+
# Criticality Type.
|
|
3781
|
+
# Corresponds to the JSON property `type`
|
|
3782
|
+
# @return [String]
|
|
3783
|
+
attr_accessor :type
|
|
3784
|
+
|
|
3785
|
+
def initialize(**args)
|
|
3786
|
+
update!(**args)
|
|
3787
|
+
end
|
|
3788
|
+
|
|
3789
|
+
# Update properties of this object
|
|
3790
|
+
def update!(**args)
|
|
3791
|
+
@type = args[:type] if args.key?(:type)
|
|
3792
|
+
end
|
|
3793
|
+
end
|
|
3794
|
+
|
|
3795
|
+
# Environment of the Application, Service, or Workload
|
|
3796
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment
|
|
3797
|
+
include Google::Apis::Core::Hashable
|
|
3798
|
+
|
|
3799
|
+
# Environment Type.
|
|
3800
|
+
# Corresponds to the JSON property `type`
|
|
3801
|
+
# @return [String]
|
|
3802
|
+
attr_accessor :type
|
|
3803
|
+
|
|
3804
|
+
def initialize(**args)
|
|
3805
|
+
update!(**args)
|
|
3806
|
+
end
|
|
3807
|
+
|
|
3808
|
+
# Update properties of this object
|
|
3809
|
+
def update!(**args)
|
|
3810
|
+
@type = args[:type] if args.key?(:type)
|
|
3811
|
+
end
|
|
3812
|
+
end
|
|
3813
|
+
|
|
3676
3814
|
# Resource for selecting resource type.
|
|
3677
3815
|
class GoogleCloudSecuritycenterV1ResourceSelector
|
|
3678
3816
|
include Google::Apis::Core::Hashable
|
|
@@ -4623,6 +4761,11 @@ module Google
|
|
|
4623
4761
|
# @return [String]
|
|
4624
4762
|
attr_accessor :publisher
|
|
4625
4763
|
|
|
4764
|
+
# The purpose of the model, for example, "Inteference" or "Training".
|
|
4765
|
+
# Corresponds to the JSON property `usageCategory`
|
|
4766
|
+
# @return [String]
|
|
4767
|
+
attr_accessor :usage_category
|
|
4768
|
+
|
|
4626
4769
|
def initialize(**args)
|
|
4627
4770
|
update!(**args)
|
|
4628
4771
|
end
|
|
@@ -4636,6 +4779,7 @@ module Google
|
|
|
4636
4779
|
@location = args[:location] if args.key?(:location)
|
|
4637
4780
|
@name = args[:name] if args.key?(:name)
|
|
4638
4781
|
@publisher = args[:publisher] if args.key?(:publisher)
|
|
4782
|
+
@usage_category = args[:usage_category] if args.key?(:usage_category)
|
|
4639
4783
|
end
|
|
4640
4784
|
end
|
|
4641
4785
|
|
|
@@ -8946,6 +9090,11 @@ module Google
|
|
|
8946
9090
|
class GoogleCloudSecuritycenterV2Resource
|
|
8947
9091
|
include Google::Apis::Core::Hashable
|
|
8948
9092
|
|
|
9093
|
+
# The App Hub Application associated with the finding's resource.
|
|
9094
|
+
# Corresponds to the JSON property `application`
|
|
9095
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplication]
|
|
9096
|
+
attr_accessor :application
|
|
9097
|
+
|
|
8949
9098
|
# AWS metadata associated with the resource, only applicable if the finding's
|
|
8950
9099
|
# cloud provider is Amazon Web Services.
|
|
8951
9100
|
# Corresponds to the JSON property `awsMetadata`
|
|
@@ -9020,6 +9169,7 @@ module Google
|
|
|
9020
9169
|
|
|
9021
9170
|
# Update properties of this object
|
|
9022
9171
|
def update!(**args)
|
|
9172
|
+
@application = args[:application] if args.key?(:application)
|
|
9023
9173
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
|
9024
9174
|
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
|
9025
9175
|
@cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
|
|
@@ -9034,6 +9184,132 @@ module Google
|
|
|
9034
9184
|
end
|
|
9035
9185
|
end
|
|
9036
9186
|
|
|
9187
|
+
# The App Hub Application associated with the finding's resource.
|
|
9188
|
+
class GoogleCloudSecuritycenterV2ResourceApplication
|
|
9189
|
+
include Google::Apis::Core::Hashable
|
|
9190
|
+
|
|
9191
|
+
# Consumer provided attributes for the application
|
|
9192
|
+
# Corresponds to the JSON property `attributes`
|
|
9193
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributes]
|
|
9194
|
+
attr_accessor :attributes
|
|
9195
|
+
|
|
9196
|
+
# The resource name of an Application. Format: `projects/`host-project-id`/
|
|
9197
|
+
# locations/`location`/applications/`application-id``
|
|
9198
|
+
# Corresponds to the JSON property `name`
|
|
9199
|
+
# @return [String]
|
|
9200
|
+
attr_accessor :name
|
|
9201
|
+
|
|
9202
|
+
def initialize(**args)
|
|
9203
|
+
update!(**args)
|
|
9204
|
+
end
|
|
9205
|
+
|
|
9206
|
+
# Update properties of this object
|
|
9207
|
+
def update!(**args)
|
|
9208
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
|
9209
|
+
@name = args[:name] if args.key?(:name)
|
|
9210
|
+
end
|
|
9211
|
+
end
|
|
9212
|
+
|
|
9213
|
+
# Consumer provided attributes for the application
|
|
9214
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributes
|
|
9215
|
+
include Google::Apis::Core::Hashable
|
|
9216
|
+
|
|
9217
|
+
# Business team that ensures user needs are met and value is delivered
|
|
9218
|
+
# Corresponds to the JSON property `businessOwners`
|
|
9219
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo>]
|
|
9220
|
+
attr_accessor :business_owners
|
|
9221
|
+
|
|
9222
|
+
# Criticality of the Application, Service, or Workload
|
|
9223
|
+
# Corresponds to the JSON property `criticality`
|
|
9224
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality]
|
|
9225
|
+
attr_accessor :criticality
|
|
9226
|
+
|
|
9227
|
+
# Developer team that owns development and coding.
|
|
9228
|
+
# Corresponds to the JSON property `developerOwners`
|
|
9229
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo>]
|
|
9230
|
+
attr_accessor :developer_owners
|
|
9231
|
+
|
|
9232
|
+
# Environment of the Application, Service, or Workload
|
|
9233
|
+
# Corresponds to the JSON property `environment`
|
|
9234
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment]
|
|
9235
|
+
attr_accessor :environment
|
|
9236
|
+
|
|
9237
|
+
# Operator team that ensures runtime and operations.
|
|
9238
|
+
# Corresponds to the JSON property `operatorOwners`
|
|
9239
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo>]
|
|
9240
|
+
attr_accessor :operator_owners
|
|
9241
|
+
|
|
9242
|
+
def initialize(**args)
|
|
9243
|
+
update!(**args)
|
|
9244
|
+
end
|
|
9245
|
+
|
|
9246
|
+
# Update properties of this object
|
|
9247
|
+
def update!(**args)
|
|
9248
|
+
@business_owners = args[:business_owners] if args.key?(:business_owners)
|
|
9249
|
+
@criticality = args[:criticality] if args.key?(:criticality)
|
|
9250
|
+
@developer_owners = args[:developer_owners] if args.key?(:developer_owners)
|
|
9251
|
+
@environment = args[:environment] if args.key?(:environment)
|
|
9252
|
+
@operator_owners = args[:operator_owners] if args.key?(:operator_owners)
|
|
9253
|
+
end
|
|
9254
|
+
end
|
|
9255
|
+
|
|
9256
|
+
# Contact information of stakeholders.
|
|
9257
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo
|
|
9258
|
+
include Google::Apis::Core::Hashable
|
|
9259
|
+
|
|
9260
|
+
# Email address of the contacts.
|
|
9261
|
+
# Corresponds to the JSON property `email`
|
|
9262
|
+
# @return [String]
|
|
9263
|
+
attr_accessor :email
|
|
9264
|
+
|
|
9265
|
+
def initialize(**args)
|
|
9266
|
+
update!(**args)
|
|
9267
|
+
end
|
|
9268
|
+
|
|
9269
|
+
# Update properties of this object
|
|
9270
|
+
def update!(**args)
|
|
9271
|
+
@email = args[:email] if args.key?(:email)
|
|
9272
|
+
end
|
|
9273
|
+
end
|
|
9274
|
+
|
|
9275
|
+
# Criticality of the Application, Service, or Workload
|
|
9276
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality
|
|
9277
|
+
include Google::Apis::Core::Hashable
|
|
9278
|
+
|
|
9279
|
+
# Criticality Type.
|
|
9280
|
+
# Corresponds to the JSON property `type`
|
|
9281
|
+
# @return [String]
|
|
9282
|
+
attr_accessor :type
|
|
9283
|
+
|
|
9284
|
+
def initialize(**args)
|
|
9285
|
+
update!(**args)
|
|
9286
|
+
end
|
|
9287
|
+
|
|
9288
|
+
# Update properties of this object
|
|
9289
|
+
def update!(**args)
|
|
9290
|
+
@type = args[:type] if args.key?(:type)
|
|
9291
|
+
end
|
|
9292
|
+
end
|
|
9293
|
+
|
|
9294
|
+
# Environment of the Application, Service, or Workload
|
|
9295
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment
|
|
9296
|
+
include Google::Apis::Core::Hashable
|
|
9297
|
+
|
|
9298
|
+
# Environment Type.
|
|
9299
|
+
# Corresponds to the JSON property `type`
|
|
9300
|
+
# @return [String]
|
|
9301
|
+
attr_accessor :type
|
|
9302
|
+
|
|
9303
|
+
def initialize(**args)
|
|
9304
|
+
update!(**args)
|
|
9305
|
+
end
|
|
9306
|
+
|
|
9307
|
+
# Update properties of this object
|
|
9308
|
+
def update!(**args)
|
|
9309
|
+
@type = args[:type] if args.key?(:type)
|
|
9310
|
+
end
|
|
9311
|
+
end
|
|
9312
|
+
|
|
9037
9313
|
# Represents the path of resources leading up to the resource this finding is
|
|
9038
9314
|
# about.
|
|
9039
9315
|
class GoogleCloudSecuritycenterV2ResourcePath
|
|
@@ -10519,8 +10795,9 @@ module Google
|
|
|
10519
10795
|
attr_accessor :operations
|
|
10520
10796
|
|
|
10521
10797
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
10522
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
10523
|
-
# when attempting to list all resources across all supported
|
|
10798
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
10799
|
+
# For example, when attempting to list all resources across all supported
|
|
10800
|
+
# locations.
|
|
10524
10801
|
# Corresponds to the JSON property `unreachable`
|
|
10525
10802
|
# @return [Array<String>]
|
|
10526
10803
|
attr_accessor :unreachable
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.100.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251202"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -496,6 +496,36 @@ module Google
|
|
|
496
496
|
include Google::Apis::Core::JsonObjectSupport
|
|
497
497
|
end
|
|
498
498
|
|
|
499
|
+
class GoogleCloudSecuritycenterV1ResourceApplication
|
|
500
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
501
|
+
|
|
502
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
503
|
+
end
|
|
504
|
+
|
|
505
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributes
|
|
506
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
507
|
+
|
|
508
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
509
|
+
end
|
|
510
|
+
|
|
511
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo
|
|
512
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
513
|
+
|
|
514
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
515
|
+
end
|
|
516
|
+
|
|
517
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality
|
|
518
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
519
|
+
|
|
520
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
521
|
+
end
|
|
522
|
+
|
|
523
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment
|
|
524
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
525
|
+
|
|
526
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
527
|
+
end
|
|
528
|
+
|
|
499
529
|
class GoogleCloudSecuritycenterV1ResourceSelector
|
|
500
530
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
501
531
|
|
|
@@ -1246,6 +1276,36 @@ module Google
|
|
|
1246
1276
|
include Google::Apis::Core::JsonObjectSupport
|
|
1247
1277
|
end
|
|
1248
1278
|
|
|
1279
|
+
class GoogleCloudSecuritycenterV2ResourceApplication
|
|
1280
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1281
|
+
|
|
1282
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1283
|
+
end
|
|
1284
|
+
|
|
1285
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributes
|
|
1286
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1287
|
+
|
|
1288
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1289
|
+
end
|
|
1290
|
+
|
|
1291
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo
|
|
1292
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1293
|
+
|
|
1294
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1295
|
+
end
|
|
1296
|
+
|
|
1297
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality
|
|
1298
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1299
|
+
|
|
1300
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1301
|
+
end
|
|
1302
|
+
|
|
1303
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment
|
|
1304
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1305
|
+
|
|
1306
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1307
|
+
end
|
|
1308
|
+
|
|
1249
1309
|
class GoogleCloudSecuritycenterV2ResourcePath
|
|
1250
1310
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1251
1311
|
|
|
@@ -1824,6 +1884,7 @@ module Google
|
|
|
1824
1884
|
property :location, as: 'location'
|
|
1825
1885
|
property :name, as: 'name'
|
|
1826
1886
|
property :publisher, as: 'publisher'
|
|
1887
|
+
property :usage_category, as: 'usageCategory'
|
|
1827
1888
|
end
|
|
1828
1889
|
end
|
|
1829
1890
|
|
|
@@ -2658,6 +2719,8 @@ module Google
|
|
|
2658
2719
|
class GoogleCloudSecuritycenterV1Resource
|
|
2659
2720
|
# @private
|
|
2660
2721
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2722
|
+
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplication, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplication::Representation
|
|
2723
|
+
|
|
2661
2724
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta1::AwsMetadata, decorator: Google::Apis::SecuritycenterV1beta1::AwsMetadata::Representation
|
|
2662
2725
|
|
|
2663
2726
|
property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1beta1::AzureMetadata, decorator: Google::Apis::SecuritycenterV1beta1::AzureMetadata::Representation
|
|
@@ -2681,6 +2744,52 @@ module Google
|
|
|
2681
2744
|
end
|
|
2682
2745
|
end
|
|
2683
2746
|
|
|
2747
|
+
class GoogleCloudSecuritycenterV1ResourceApplication
|
|
2748
|
+
# @private
|
|
2749
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2750
|
+
property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributes::Representation
|
|
2751
|
+
|
|
2752
|
+
property :name, as: 'name'
|
|
2753
|
+
end
|
|
2754
|
+
end
|
|
2755
|
+
|
|
2756
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributes
|
|
2757
|
+
# @private
|
|
2758
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2759
|
+
collection :business_owners, as: 'businessOwners', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo::Representation
|
|
2760
|
+
|
|
2761
|
+
property :criticality, as: 'criticality', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality::Representation
|
|
2762
|
+
|
|
2763
|
+
collection :developer_owners, as: 'developerOwners', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo::Representation
|
|
2764
|
+
|
|
2765
|
+
property :environment, as: 'environment', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment::Representation
|
|
2766
|
+
|
|
2767
|
+
collection :operator_owners, as: 'operatorOwners', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo::Representation
|
|
2768
|
+
|
|
2769
|
+
end
|
|
2770
|
+
end
|
|
2771
|
+
|
|
2772
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo
|
|
2773
|
+
# @private
|
|
2774
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2775
|
+
property :email, as: 'email'
|
|
2776
|
+
end
|
|
2777
|
+
end
|
|
2778
|
+
|
|
2779
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality
|
|
2780
|
+
# @private
|
|
2781
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2782
|
+
property :type, as: 'type'
|
|
2783
|
+
end
|
|
2784
|
+
end
|
|
2785
|
+
|
|
2786
|
+
class GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment
|
|
2787
|
+
# @private
|
|
2788
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2789
|
+
property :type, as: 'type'
|
|
2790
|
+
end
|
|
2791
|
+
end
|
|
2792
|
+
|
|
2684
2793
|
class GoogleCloudSecuritycenterV1ResourceSelector
|
|
2685
2794
|
# @private
|
|
2686
2795
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2894,6 +3003,7 @@ module Google
|
|
|
2894
3003
|
property :location, as: 'location'
|
|
2895
3004
|
property :name, as: 'name'
|
|
2896
3005
|
property :publisher, as: 'publisher'
|
|
3006
|
+
property :usage_category, as: 'usageCategory'
|
|
2897
3007
|
end
|
|
2898
3008
|
end
|
|
2899
3009
|
|
|
@@ -4073,6 +4183,8 @@ module Google
|
|
|
4073
4183
|
class GoogleCloudSecuritycenterV2Resource
|
|
4074
4184
|
# @private
|
|
4075
4185
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4186
|
+
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplication, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplication::Representation
|
|
4187
|
+
|
|
4076
4188
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AwsMetadata, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AwsMetadata::Representation
|
|
4077
4189
|
|
|
4078
4190
|
property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AzureMetadata, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AzureMetadata::Representation
|
|
@@ -4091,6 +4203,52 @@ module Google
|
|
|
4091
4203
|
end
|
|
4092
4204
|
end
|
|
4093
4205
|
|
|
4206
|
+
class GoogleCloudSecuritycenterV2ResourceApplication
|
|
4207
|
+
# @private
|
|
4208
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4209
|
+
property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributes::Representation
|
|
4210
|
+
|
|
4211
|
+
property :name, as: 'name'
|
|
4212
|
+
end
|
|
4213
|
+
end
|
|
4214
|
+
|
|
4215
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributes
|
|
4216
|
+
# @private
|
|
4217
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4218
|
+
collection :business_owners, as: 'businessOwners', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo::Representation
|
|
4219
|
+
|
|
4220
|
+
property :criticality, as: 'criticality', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality::Representation
|
|
4221
|
+
|
|
4222
|
+
collection :developer_owners, as: 'developerOwners', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo::Representation
|
|
4223
|
+
|
|
4224
|
+
property :environment, as: 'environment', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment::Representation
|
|
4225
|
+
|
|
4226
|
+
collection :operator_owners, as: 'operatorOwners', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo::Representation
|
|
4227
|
+
|
|
4228
|
+
end
|
|
4229
|
+
end
|
|
4230
|
+
|
|
4231
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo
|
|
4232
|
+
# @private
|
|
4233
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4234
|
+
property :email, as: 'email'
|
|
4235
|
+
end
|
|
4236
|
+
end
|
|
4237
|
+
|
|
4238
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality
|
|
4239
|
+
# @private
|
|
4240
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4241
|
+
property :type, as: 'type'
|
|
4242
|
+
end
|
|
4243
|
+
end
|
|
4244
|
+
|
|
4245
|
+
class GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment
|
|
4246
|
+
# @private
|
|
4247
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4248
|
+
property :type, as: 'type'
|
|
4249
|
+
end
|
|
4250
|
+
end
|
|
4251
|
+
|
|
4094
4252
|
class GoogleCloudSecuritycenterV2ResourcePath
|
|
4095
4253
|
# @private
|
|
4096
4254
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -439,11 +439,12 @@ module Google
|
|
|
439
439
|
# The standard list page token.
|
|
440
440
|
# @param [Boolean] return_partial_success
|
|
441
441
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
442
|
-
# those that are unreachable are returned in the
|
|
443
|
-
# unreachable
|
|
444
|
-
#
|
|
445
|
-
# by default
|
|
446
|
-
# explicitly documented otherwise in service or product specific
|
|
442
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
443
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
444
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
445
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
446
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
447
|
+
# documentation.
|
|
447
448
|
# @param [String] fields
|
|
448
449
|
# Selector specifying which fields to include in a partial response.
|
|
449
450
|
# @param [String] quota_user
|
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.
|
|
4
|
+
version: 0.100.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.100.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:
|