google-apis-securitycenter_v1beta1 0.98.0 → 0.99.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: 1d33b69f31b434fc6a84addc34b288e609739c1185e9ad897cde77e69dec1f06
|
|
4
|
+
data.tar.gz: 40602262f780517caa2f5909d597f0c638e8e473c3432890c296de2cb74f1b7e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 91c28c439a71ff2a7a788a88e9f1368ae5aa1d4b3296e1e578bfcae0cc6778167855447122d7760b885025d71388efd0eadea703c963b9d22502514c0854a30a
|
|
7
|
+
data.tar.gz: 16c89a7fd23e692233cd8cf9f7b7387f7f6578a03957c36c4b4b69497b41860ce94d69176d6d48030621b0ff3348548f6feec5e778150c7dd6fb544683672dc5
|
data/CHANGELOG.md
CHANGED
|
@@ -7643,6 +7643,11 @@ module Google
|
|
|
7643
7643
|
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
|
7644
7644
|
include Google::Apis::Core::Hashable
|
|
7645
7645
|
|
|
7646
|
+
# Consumer provided attributes for the application
|
|
7647
|
+
# Corresponds to the JSON property `attributes`
|
|
7648
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes]
|
|
7649
|
+
attr_accessor :attributes
|
|
7650
|
+
|
|
7646
7651
|
# The resource name of an Application. Format: `projects/`host-project-id`/
|
|
7647
7652
|
# locations/`location`/applications/`application-id``
|
|
7648
7653
|
# Corresponds to the JSON property `name`
|
|
@@ -7655,10 +7660,111 @@ module Google
|
|
|
7655
7660
|
|
|
7656
7661
|
# Update properties of this object
|
|
7657
7662
|
def update!(**args)
|
|
7663
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
|
7658
7664
|
@name = args[:name] if args.key?(:name)
|
|
7659
7665
|
end
|
|
7660
7666
|
end
|
|
7661
7667
|
|
|
7668
|
+
# Consumer provided attributes for the application
|
|
7669
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
|
|
7670
|
+
include Google::Apis::Core::Hashable
|
|
7671
|
+
|
|
7672
|
+
# Business team that ensures user needs are met and value is delivered
|
|
7673
|
+
# Corresponds to the JSON property `businessOwners`
|
|
7674
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
|
|
7675
|
+
attr_accessor :business_owners
|
|
7676
|
+
|
|
7677
|
+
# Criticality of the Application, Service, or Workload
|
|
7678
|
+
# Corresponds to the JSON property `criticality`
|
|
7679
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality]
|
|
7680
|
+
attr_accessor :criticality
|
|
7681
|
+
|
|
7682
|
+
# Developer team that owns development and coding.
|
|
7683
|
+
# Corresponds to the JSON property `developerOwners`
|
|
7684
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
|
|
7685
|
+
attr_accessor :developer_owners
|
|
7686
|
+
|
|
7687
|
+
# Environment of the Application, Service, or Workload
|
|
7688
|
+
# Corresponds to the JSON property `environment`
|
|
7689
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment]
|
|
7690
|
+
attr_accessor :environment
|
|
7691
|
+
|
|
7692
|
+
# Operator team that ensures runtime and operations.
|
|
7693
|
+
# Corresponds to the JSON property `operatorOwners`
|
|
7694
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
|
|
7695
|
+
attr_accessor :operator_owners
|
|
7696
|
+
|
|
7697
|
+
def initialize(**args)
|
|
7698
|
+
update!(**args)
|
|
7699
|
+
end
|
|
7700
|
+
|
|
7701
|
+
# Update properties of this object
|
|
7702
|
+
def update!(**args)
|
|
7703
|
+
@business_owners = args[:business_owners] if args.key?(:business_owners)
|
|
7704
|
+
@criticality = args[:criticality] if args.key?(:criticality)
|
|
7705
|
+
@developer_owners = args[:developer_owners] if args.key?(:developer_owners)
|
|
7706
|
+
@environment = args[:environment] if args.key?(:environment)
|
|
7707
|
+
@operator_owners = args[:operator_owners] if args.key?(:operator_owners)
|
|
7708
|
+
end
|
|
7709
|
+
end
|
|
7710
|
+
|
|
7711
|
+
# Contact information of stakeholders.
|
|
7712
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
|
|
7713
|
+
include Google::Apis::Core::Hashable
|
|
7714
|
+
|
|
7715
|
+
# Email address of the contacts.
|
|
7716
|
+
# Corresponds to the JSON property `email`
|
|
7717
|
+
# @return [String]
|
|
7718
|
+
attr_accessor :email
|
|
7719
|
+
|
|
7720
|
+
def initialize(**args)
|
|
7721
|
+
update!(**args)
|
|
7722
|
+
end
|
|
7723
|
+
|
|
7724
|
+
# Update properties of this object
|
|
7725
|
+
def update!(**args)
|
|
7726
|
+
@email = args[:email] if args.key?(:email)
|
|
7727
|
+
end
|
|
7728
|
+
end
|
|
7729
|
+
|
|
7730
|
+
# Criticality of the Application, Service, or Workload
|
|
7731
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
|
|
7732
|
+
include Google::Apis::Core::Hashable
|
|
7733
|
+
|
|
7734
|
+
# Criticality Type.
|
|
7735
|
+
# Corresponds to the JSON property `type`
|
|
7736
|
+
# @return [String]
|
|
7737
|
+
attr_accessor :type
|
|
7738
|
+
|
|
7739
|
+
def initialize(**args)
|
|
7740
|
+
update!(**args)
|
|
7741
|
+
end
|
|
7742
|
+
|
|
7743
|
+
# Update properties of this object
|
|
7744
|
+
def update!(**args)
|
|
7745
|
+
@type = args[:type] if args.key?(:type)
|
|
7746
|
+
end
|
|
7747
|
+
end
|
|
7748
|
+
|
|
7749
|
+
# Environment of the Application, Service, or Workload
|
|
7750
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
|
|
7751
|
+
include Google::Apis::Core::Hashable
|
|
7752
|
+
|
|
7753
|
+
# Environment Type.
|
|
7754
|
+
# Corresponds to the JSON property `type`
|
|
7755
|
+
# @return [String]
|
|
7756
|
+
attr_accessor :type
|
|
7757
|
+
|
|
7758
|
+
def initialize(**args)
|
|
7759
|
+
update!(**args)
|
|
7760
|
+
end
|
|
7761
|
+
|
|
7762
|
+
# Update properties of this object
|
|
7763
|
+
def update!(**args)
|
|
7764
|
+
@type = args[:type] if args.key?(:type)
|
|
7765
|
+
end
|
|
7766
|
+
end
|
|
7767
|
+
|
|
7662
7768
|
# The AWS metadata of a resource associated with an issue.
|
|
7663
7769
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
|
7664
7770
|
include Google::Apis::Core::Hashable
|
|
@@ -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.99.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 = "20251017"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1012,6 +1012,30 @@ module Google
|
|
|
1012
1012
|
include Google::Apis::Core::JsonObjectSupport
|
|
1013
1013
|
end
|
|
1014
1014
|
|
|
1015
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
|
|
1016
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1017
|
+
|
|
1018
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1019
|
+
end
|
|
1020
|
+
|
|
1021
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
|
|
1022
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1023
|
+
|
|
1024
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1025
|
+
end
|
|
1026
|
+
|
|
1027
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
|
|
1028
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1029
|
+
|
|
1030
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1031
|
+
end
|
|
1032
|
+
|
|
1033
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
|
|
1034
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1035
|
+
|
|
1036
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1037
|
+
end
|
|
1038
|
+
|
|
1015
1039
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
|
1016
1040
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1017
1041
|
|
|
@@ -3665,10 +3689,49 @@ module Google
|
|
|
3665
3689
|
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
|
3666
3690
|
# @private
|
|
3667
3691
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3692
|
+
property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes::Representation
|
|
3693
|
+
|
|
3668
3694
|
property :name, as: 'name'
|
|
3669
3695
|
end
|
|
3670
3696
|
end
|
|
3671
3697
|
|
|
3698
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
|
|
3699
|
+
# @private
|
|
3700
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3701
|
+
collection :business_owners, as: 'businessOwners', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
|
|
3702
|
+
|
|
3703
|
+
property :criticality, as: 'criticality', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality::Representation
|
|
3704
|
+
|
|
3705
|
+
collection :developer_owners, as: 'developerOwners', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
|
|
3706
|
+
|
|
3707
|
+
property :environment, as: 'environment', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment::Representation
|
|
3708
|
+
|
|
3709
|
+
collection :operator_owners, as: 'operatorOwners', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
|
|
3710
|
+
|
|
3711
|
+
end
|
|
3712
|
+
end
|
|
3713
|
+
|
|
3714
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
|
|
3715
|
+
# @private
|
|
3716
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3717
|
+
property :email, as: 'email'
|
|
3718
|
+
end
|
|
3719
|
+
end
|
|
3720
|
+
|
|
3721
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
|
|
3722
|
+
# @private
|
|
3723
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3724
|
+
property :type, as: 'type'
|
|
3725
|
+
end
|
|
3726
|
+
end
|
|
3727
|
+
|
|
3728
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
|
|
3729
|
+
# @private
|
|
3730
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3731
|
+
property :type, as: 'type'
|
|
3732
|
+
end
|
|
3733
|
+
end
|
|
3734
|
+
|
|
3672
3735
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
|
3673
3736
|
# @private
|
|
3674
3737
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.99.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.99.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:
|