google-apis-securitycenter_v1 0.109.0 → 0.110.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: 953a8aef568c4f3f04faaa9f4803e7b391f10c41f0fb05d91a0d9893572d505b
|
|
4
|
+
data.tar.gz: cdcf8f1f6856ef72f71e9a648defcbe70d0c6f106b077d59af4fe3c6ef22ff23
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 24720e8bddde5fcc1ffd18f1dbb019192f0cc07e6c6d40d5767799997f3a5f9e714af875675f3a8f2c739ca4446ab7575c7d080f128473bbdf8451c3b54785a9
|
|
7
|
+
data.tar.gz: af9ae6a40a509e0152991fbc59039cfa3e1eb7bdc51d98351a1661d4875ff62c0c9fc9166ca7afab4ec8db6c143310b77486cc3d39ff5506b54750b0f3c3f27d
|
data/CHANGELOG.md
CHANGED
|
@@ -7993,6 +7993,11 @@ module Google
|
|
|
7993
7993
|
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
|
7994
7994
|
include Google::Apis::Core::Hashable
|
|
7995
7995
|
|
|
7996
|
+
# Consumer provided attributes for the application
|
|
7997
|
+
# Corresponds to the JSON property `attributes`
|
|
7998
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes]
|
|
7999
|
+
attr_accessor :attributes
|
|
8000
|
+
|
|
7996
8001
|
# The resource name of an Application. Format: `projects/`host-project-id`/
|
|
7997
8002
|
# locations/`location`/applications/`application-id``
|
|
7998
8003
|
# Corresponds to the JSON property `name`
|
|
@@ -8005,10 +8010,111 @@ module Google
|
|
|
8005
8010
|
|
|
8006
8011
|
# Update properties of this object
|
|
8007
8012
|
def update!(**args)
|
|
8013
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
|
8008
8014
|
@name = args[:name] if args.key?(:name)
|
|
8009
8015
|
end
|
|
8010
8016
|
end
|
|
8011
8017
|
|
|
8018
|
+
# Consumer provided attributes for the application
|
|
8019
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
|
|
8020
|
+
include Google::Apis::Core::Hashable
|
|
8021
|
+
|
|
8022
|
+
# Business team that ensures user needs are met and value is delivered
|
|
8023
|
+
# Corresponds to the JSON property `businessOwners`
|
|
8024
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
|
|
8025
|
+
attr_accessor :business_owners
|
|
8026
|
+
|
|
8027
|
+
# Criticality of the Application, Service, or Workload
|
|
8028
|
+
# Corresponds to the JSON property `criticality`
|
|
8029
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality]
|
|
8030
|
+
attr_accessor :criticality
|
|
8031
|
+
|
|
8032
|
+
# Developer team that owns development and coding.
|
|
8033
|
+
# Corresponds to the JSON property `developerOwners`
|
|
8034
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
|
|
8035
|
+
attr_accessor :developer_owners
|
|
8036
|
+
|
|
8037
|
+
# Environment of the Application, Service, or Workload
|
|
8038
|
+
# Corresponds to the JSON property `environment`
|
|
8039
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment]
|
|
8040
|
+
attr_accessor :environment
|
|
8041
|
+
|
|
8042
|
+
# Operator team that ensures runtime and operations.
|
|
8043
|
+
# Corresponds to the JSON property `operatorOwners`
|
|
8044
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
|
|
8045
|
+
attr_accessor :operator_owners
|
|
8046
|
+
|
|
8047
|
+
def initialize(**args)
|
|
8048
|
+
update!(**args)
|
|
8049
|
+
end
|
|
8050
|
+
|
|
8051
|
+
# Update properties of this object
|
|
8052
|
+
def update!(**args)
|
|
8053
|
+
@business_owners = args[:business_owners] if args.key?(:business_owners)
|
|
8054
|
+
@criticality = args[:criticality] if args.key?(:criticality)
|
|
8055
|
+
@developer_owners = args[:developer_owners] if args.key?(:developer_owners)
|
|
8056
|
+
@environment = args[:environment] if args.key?(:environment)
|
|
8057
|
+
@operator_owners = args[:operator_owners] if args.key?(:operator_owners)
|
|
8058
|
+
end
|
|
8059
|
+
end
|
|
8060
|
+
|
|
8061
|
+
# Contact information of stakeholders.
|
|
8062
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
|
|
8063
|
+
include Google::Apis::Core::Hashable
|
|
8064
|
+
|
|
8065
|
+
# Email address of the contacts.
|
|
8066
|
+
# Corresponds to the JSON property `email`
|
|
8067
|
+
# @return [String]
|
|
8068
|
+
attr_accessor :email
|
|
8069
|
+
|
|
8070
|
+
def initialize(**args)
|
|
8071
|
+
update!(**args)
|
|
8072
|
+
end
|
|
8073
|
+
|
|
8074
|
+
# Update properties of this object
|
|
8075
|
+
def update!(**args)
|
|
8076
|
+
@email = args[:email] if args.key?(:email)
|
|
8077
|
+
end
|
|
8078
|
+
end
|
|
8079
|
+
|
|
8080
|
+
# Criticality of the Application, Service, or Workload
|
|
8081
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
|
|
8082
|
+
include Google::Apis::Core::Hashable
|
|
8083
|
+
|
|
8084
|
+
# Criticality Type.
|
|
8085
|
+
# Corresponds to the JSON property `type`
|
|
8086
|
+
# @return [String]
|
|
8087
|
+
attr_accessor :type
|
|
8088
|
+
|
|
8089
|
+
def initialize(**args)
|
|
8090
|
+
update!(**args)
|
|
8091
|
+
end
|
|
8092
|
+
|
|
8093
|
+
# Update properties of this object
|
|
8094
|
+
def update!(**args)
|
|
8095
|
+
@type = args[:type] if args.key?(:type)
|
|
8096
|
+
end
|
|
8097
|
+
end
|
|
8098
|
+
|
|
8099
|
+
# Environment of the Application, Service, or Workload
|
|
8100
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
|
|
8101
|
+
include Google::Apis::Core::Hashable
|
|
8102
|
+
|
|
8103
|
+
# Environment Type.
|
|
8104
|
+
# Corresponds to the JSON property `type`
|
|
8105
|
+
# @return [String]
|
|
8106
|
+
attr_accessor :type
|
|
8107
|
+
|
|
8108
|
+
def initialize(**args)
|
|
8109
|
+
update!(**args)
|
|
8110
|
+
end
|
|
8111
|
+
|
|
8112
|
+
# Update properties of this object
|
|
8113
|
+
def update!(**args)
|
|
8114
|
+
@type = args[:type] if args.key?(:type)
|
|
8115
|
+
end
|
|
8116
|
+
end
|
|
8117
|
+
|
|
8012
8118
|
# The AWS metadata of a resource associated with an issue.
|
|
8013
8119
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
|
8014
8120
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module SecuritycenterV1
|
|
18
18
|
# Version of the google-apis-securitycenter_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.110.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
|
|
@@ -1066,6 +1066,30 @@ module Google
|
|
|
1066
1066
|
include Google::Apis::Core::JsonObjectSupport
|
|
1067
1067
|
end
|
|
1068
1068
|
|
|
1069
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
|
|
1070
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1071
|
+
|
|
1072
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1073
|
+
end
|
|
1074
|
+
|
|
1075
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
|
|
1076
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1077
|
+
|
|
1078
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1079
|
+
end
|
|
1080
|
+
|
|
1081
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
|
|
1082
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1083
|
+
|
|
1084
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1085
|
+
end
|
|
1086
|
+
|
|
1087
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
|
|
1088
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1089
|
+
|
|
1090
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1091
|
+
end
|
|
1092
|
+
|
|
1069
1093
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
|
1070
1094
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1071
1095
|
|
|
@@ -3993,10 +4017,49 @@ module Google
|
|
|
3993
4017
|
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
|
3994
4018
|
# @private
|
|
3995
4019
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4020
|
+
property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes::Representation
|
|
4021
|
+
|
|
3996
4022
|
property :name, as: 'name'
|
|
3997
4023
|
end
|
|
3998
4024
|
end
|
|
3999
4025
|
|
|
4026
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
|
|
4027
|
+
# @private
|
|
4028
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4029
|
+
collection :business_owners, as: 'businessOwners', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
|
|
4030
|
+
|
|
4031
|
+
property :criticality, as: 'criticality', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality::Representation
|
|
4032
|
+
|
|
4033
|
+
collection :developer_owners, as: 'developerOwners', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
|
|
4034
|
+
|
|
4035
|
+
property :environment, as: 'environment', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment::Representation
|
|
4036
|
+
|
|
4037
|
+
collection :operator_owners, as: 'operatorOwners', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
|
|
4038
|
+
|
|
4039
|
+
end
|
|
4040
|
+
end
|
|
4041
|
+
|
|
4042
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
|
|
4043
|
+
# @private
|
|
4044
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4045
|
+
property :email, as: 'email'
|
|
4046
|
+
end
|
|
4047
|
+
end
|
|
4048
|
+
|
|
4049
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
|
|
4050
|
+
# @private
|
|
4051
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4052
|
+
property :type, as: 'type'
|
|
4053
|
+
end
|
|
4054
|
+
end
|
|
4055
|
+
|
|
4056
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
|
|
4057
|
+
# @private
|
|
4058
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4059
|
+
property :type, as: 'type'
|
|
4060
|
+
end
|
|
4061
|
+
end
|
|
4062
|
+
|
|
4000
4063
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
|
4001
4064
|
# @private
|
|
4002
4065
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-securitycenter_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.110.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.110.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|