google-apis-securitycenter_v1beta1 0.98.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 +8 -0
- data/lib/google/apis/securitycenter_v1beta1/classes.rb +385 -2
- data/lib/google/apis/securitycenter_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/securitycenter_v1beta1/representations.rb +221 -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
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.100.0 (2025-12-07)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251202
|
|
6
|
+
|
|
7
|
+
### v0.99.0 (2025-10-26)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251017
|
|
10
|
+
|
|
3
11
|
### v0.98.0 (2025-10-12)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251006
|
|
@@ -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
|
|
|
@@ -7643,6 +7787,11 @@ module Google
|
|
|
7643
7787
|
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
|
7644
7788
|
include Google::Apis::Core::Hashable
|
|
7645
7789
|
|
|
7790
|
+
# Consumer provided attributes for the application
|
|
7791
|
+
# Corresponds to the JSON property `attributes`
|
|
7792
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes]
|
|
7793
|
+
attr_accessor :attributes
|
|
7794
|
+
|
|
7646
7795
|
# The resource name of an Application. Format: `projects/`host-project-id`/
|
|
7647
7796
|
# locations/`location`/applications/`application-id``
|
|
7648
7797
|
# Corresponds to the JSON property `name`
|
|
@@ -7655,10 +7804,111 @@ module Google
|
|
|
7655
7804
|
|
|
7656
7805
|
# Update properties of this object
|
|
7657
7806
|
def update!(**args)
|
|
7807
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
|
7658
7808
|
@name = args[:name] if args.key?(:name)
|
|
7659
7809
|
end
|
|
7660
7810
|
end
|
|
7661
7811
|
|
|
7812
|
+
# Consumer provided attributes for the application
|
|
7813
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
|
|
7814
|
+
include Google::Apis::Core::Hashable
|
|
7815
|
+
|
|
7816
|
+
# Business team that ensures user needs are met and value is delivered
|
|
7817
|
+
# Corresponds to the JSON property `businessOwners`
|
|
7818
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
|
|
7819
|
+
attr_accessor :business_owners
|
|
7820
|
+
|
|
7821
|
+
# Criticality of the Application, Service, or Workload
|
|
7822
|
+
# Corresponds to the JSON property `criticality`
|
|
7823
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality]
|
|
7824
|
+
attr_accessor :criticality
|
|
7825
|
+
|
|
7826
|
+
# Developer team that owns development and coding.
|
|
7827
|
+
# Corresponds to the JSON property `developerOwners`
|
|
7828
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
|
|
7829
|
+
attr_accessor :developer_owners
|
|
7830
|
+
|
|
7831
|
+
# Environment of the Application, Service, or Workload
|
|
7832
|
+
# Corresponds to the JSON property `environment`
|
|
7833
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment]
|
|
7834
|
+
attr_accessor :environment
|
|
7835
|
+
|
|
7836
|
+
# Operator team that ensures runtime and operations.
|
|
7837
|
+
# Corresponds to the JSON property `operatorOwners`
|
|
7838
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
|
|
7839
|
+
attr_accessor :operator_owners
|
|
7840
|
+
|
|
7841
|
+
def initialize(**args)
|
|
7842
|
+
update!(**args)
|
|
7843
|
+
end
|
|
7844
|
+
|
|
7845
|
+
# Update properties of this object
|
|
7846
|
+
def update!(**args)
|
|
7847
|
+
@business_owners = args[:business_owners] if args.key?(:business_owners)
|
|
7848
|
+
@criticality = args[:criticality] if args.key?(:criticality)
|
|
7849
|
+
@developer_owners = args[:developer_owners] if args.key?(:developer_owners)
|
|
7850
|
+
@environment = args[:environment] if args.key?(:environment)
|
|
7851
|
+
@operator_owners = args[:operator_owners] if args.key?(:operator_owners)
|
|
7852
|
+
end
|
|
7853
|
+
end
|
|
7854
|
+
|
|
7855
|
+
# Contact information of stakeholders.
|
|
7856
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
|
|
7857
|
+
include Google::Apis::Core::Hashable
|
|
7858
|
+
|
|
7859
|
+
# Email address of the contacts.
|
|
7860
|
+
# Corresponds to the JSON property `email`
|
|
7861
|
+
# @return [String]
|
|
7862
|
+
attr_accessor :email
|
|
7863
|
+
|
|
7864
|
+
def initialize(**args)
|
|
7865
|
+
update!(**args)
|
|
7866
|
+
end
|
|
7867
|
+
|
|
7868
|
+
# Update properties of this object
|
|
7869
|
+
def update!(**args)
|
|
7870
|
+
@email = args[:email] if args.key?(:email)
|
|
7871
|
+
end
|
|
7872
|
+
end
|
|
7873
|
+
|
|
7874
|
+
# Criticality of the Application, Service, or Workload
|
|
7875
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
|
|
7876
|
+
include Google::Apis::Core::Hashable
|
|
7877
|
+
|
|
7878
|
+
# Criticality Type.
|
|
7879
|
+
# Corresponds to the JSON property `type`
|
|
7880
|
+
# @return [String]
|
|
7881
|
+
attr_accessor :type
|
|
7882
|
+
|
|
7883
|
+
def initialize(**args)
|
|
7884
|
+
update!(**args)
|
|
7885
|
+
end
|
|
7886
|
+
|
|
7887
|
+
# Update properties of this object
|
|
7888
|
+
def update!(**args)
|
|
7889
|
+
@type = args[:type] if args.key?(:type)
|
|
7890
|
+
end
|
|
7891
|
+
end
|
|
7892
|
+
|
|
7893
|
+
# Environment of the Application, Service, or Workload
|
|
7894
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
|
|
7895
|
+
include Google::Apis::Core::Hashable
|
|
7896
|
+
|
|
7897
|
+
# Environment Type.
|
|
7898
|
+
# Corresponds to the JSON property `type`
|
|
7899
|
+
# @return [String]
|
|
7900
|
+
attr_accessor :type
|
|
7901
|
+
|
|
7902
|
+
def initialize(**args)
|
|
7903
|
+
update!(**args)
|
|
7904
|
+
end
|
|
7905
|
+
|
|
7906
|
+
# Update properties of this object
|
|
7907
|
+
def update!(**args)
|
|
7908
|
+
@type = args[:type] if args.key?(:type)
|
|
7909
|
+
end
|
|
7910
|
+
end
|
|
7911
|
+
|
|
7662
7912
|
# The AWS metadata of a resource associated with an issue.
|
|
7663
7913
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
|
7664
7914
|
include Google::Apis::Core::Hashable
|
|
@@ -8840,6 +9090,11 @@ module Google
|
|
|
8840
9090
|
class GoogleCloudSecuritycenterV2Resource
|
|
8841
9091
|
include Google::Apis::Core::Hashable
|
|
8842
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
|
+
|
|
8843
9098
|
# AWS metadata associated with the resource, only applicable if the finding's
|
|
8844
9099
|
# cloud provider is Amazon Web Services.
|
|
8845
9100
|
# Corresponds to the JSON property `awsMetadata`
|
|
@@ -8914,6 +9169,7 @@ module Google
|
|
|
8914
9169
|
|
|
8915
9170
|
# Update properties of this object
|
|
8916
9171
|
def update!(**args)
|
|
9172
|
+
@application = args[:application] if args.key?(:application)
|
|
8917
9173
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
|
8918
9174
|
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
|
8919
9175
|
@cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
|
|
@@ -8928,6 +9184,132 @@ module Google
|
|
|
8928
9184
|
end
|
|
8929
9185
|
end
|
|
8930
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
|
+
|
|
8931
9313
|
# Represents the path of resources leading up to the resource this finding is
|
|
8932
9314
|
# about.
|
|
8933
9315
|
class GoogleCloudSecuritycenterV2ResourcePath
|
|
@@ -10413,8 +10795,9 @@ module Google
|
|
|
10413
10795
|
attr_accessor :operations
|
|
10414
10796
|
|
|
10415
10797
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
10416
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
10417
|
-
# 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.
|
|
10418
10801
|
# Corresponds to the JSON property `unreachable`
|
|
10419
10802
|
# @return [Array<String>]
|
|
10420
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
|
|
|
@@ -1012,6 +1042,30 @@ module Google
|
|
|
1012
1042
|
include Google::Apis::Core::JsonObjectSupport
|
|
1013
1043
|
end
|
|
1014
1044
|
|
|
1045
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
|
|
1046
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1047
|
+
|
|
1048
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1049
|
+
end
|
|
1050
|
+
|
|
1051
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
|
|
1052
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1053
|
+
|
|
1054
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1055
|
+
end
|
|
1056
|
+
|
|
1057
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
|
|
1058
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1059
|
+
|
|
1060
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1061
|
+
end
|
|
1062
|
+
|
|
1063
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
|
|
1064
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1065
|
+
|
|
1066
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1067
|
+
end
|
|
1068
|
+
|
|
1015
1069
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
|
1016
1070
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1017
1071
|
|
|
@@ -1222,6 +1276,36 @@ module Google
|
|
|
1222
1276
|
include Google::Apis::Core::JsonObjectSupport
|
|
1223
1277
|
end
|
|
1224
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
|
+
|
|
1225
1309
|
class GoogleCloudSecuritycenterV2ResourcePath
|
|
1226
1310
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1227
1311
|
|
|
@@ -1800,6 +1884,7 @@ module Google
|
|
|
1800
1884
|
property :location, as: 'location'
|
|
1801
1885
|
property :name, as: 'name'
|
|
1802
1886
|
property :publisher, as: 'publisher'
|
|
1887
|
+
property :usage_category, as: 'usageCategory'
|
|
1803
1888
|
end
|
|
1804
1889
|
end
|
|
1805
1890
|
|
|
@@ -2634,6 +2719,8 @@ module Google
|
|
|
2634
2719
|
class GoogleCloudSecuritycenterV1Resource
|
|
2635
2720
|
# @private
|
|
2636
2721
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2722
|
+
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplication, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceApplication::Representation
|
|
2723
|
+
|
|
2637
2724
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta1::AwsMetadata, decorator: Google::Apis::SecuritycenterV1beta1::AwsMetadata::Representation
|
|
2638
2725
|
|
|
2639
2726
|
property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1beta1::AzureMetadata, decorator: Google::Apis::SecuritycenterV1beta1::AzureMetadata::Representation
|
|
@@ -2657,6 +2744,52 @@ module Google
|
|
|
2657
2744
|
end
|
|
2658
2745
|
end
|
|
2659
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
|
+
|
|
2660
2793
|
class GoogleCloudSecuritycenterV1ResourceSelector
|
|
2661
2794
|
# @private
|
|
2662
2795
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2870,6 +3003,7 @@ module Google
|
|
|
2870
3003
|
property :location, as: 'location'
|
|
2871
3004
|
property :name, as: 'name'
|
|
2872
3005
|
property :publisher, as: 'publisher'
|
|
3006
|
+
property :usage_category, as: 'usageCategory'
|
|
2873
3007
|
end
|
|
2874
3008
|
end
|
|
2875
3009
|
|
|
@@ -3665,10 +3799,49 @@ module Google
|
|
|
3665
3799
|
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
|
3666
3800
|
# @private
|
|
3667
3801
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3802
|
+
property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes::Representation
|
|
3803
|
+
|
|
3668
3804
|
property :name, as: 'name'
|
|
3669
3805
|
end
|
|
3670
3806
|
end
|
|
3671
3807
|
|
|
3808
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
|
|
3809
|
+
# @private
|
|
3810
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3811
|
+
collection :business_owners, as: 'businessOwners', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
|
|
3812
|
+
|
|
3813
|
+
property :criticality, as: 'criticality', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality::Representation
|
|
3814
|
+
|
|
3815
|
+
collection :developer_owners, as: 'developerOwners', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
|
|
3816
|
+
|
|
3817
|
+
property :environment, as: 'environment', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment::Representation
|
|
3818
|
+
|
|
3819
|
+
collection :operator_owners, as: 'operatorOwners', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
|
|
3820
|
+
|
|
3821
|
+
end
|
|
3822
|
+
end
|
|
3823
|
+
|
|
3824
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
|
|
3825
|
+
# @private
|
|
3826
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3827
|
+
property :email, as: 'email'
|
|
3828
|
+
end
|
|
3829
|
+
end
|
|
3830
|
+
|
|
3831
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
|
|
3832
|
+
# @private
|
|
3833
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3834
|
+
property :type, as: 'type'
|
|
3835
|
+
end
|
|
3836
|
+
end
|
|
3837
|
+
|
|
3838
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
|
|
3839
|
+
# @private
|
|
3840
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3841
|
+
property :type, as: 'type'
|
|
3842
|
+
end
|
|
3843
|
+
end
|
|
3844
|
+
|
|
3672
3845
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
|
3673
3846
|
# @private
|
|
3674
3847
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4010,6 +4183,8 @@ module Google
|
|
|
4010
4183
|
class GoogleCloudSecuritycenterV2Resource
|
|
4011
4184
|
# @private
|
|
4012
4185
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4186
|
+
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplication, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ResourceApplication::Representation
|
|
4187
|
+
|
|
4013
4188
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AwsMetadata, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AwsMetadata::Representation
|
|
4014
4189
|
|
|
4015
4190
|
property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AzureMetadata, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AzureMetadata::Representation
|
|
@@ -4028,6 +4203,52 @@ module Google
|
|
|
4028
4203
|
end
|
|
4029
4204
|
end
|
|
4030
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
|
+
|
|
4031
4252
|
class GoogleCloudSecuritycenterV2ResourcePath
|
|
4032
4253
|
# @private
|
|
4033
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:
|