google-apis-securitycenter_v1beta2 0.91.0 → 0.92.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: 122b9c0452ea21c00e59cc9417b81a2d79e352c8e8ee3d21bfb3f944a4907422
|
|
4
|
+
data.tar.gz: 5d9be1a430e136b9c39cee0079bd0bf99af40a8f132387af1f590e9bdb3c2d00
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d1d3e86b622efd967dc32886e7560abfd0240d4e58047f751ee3d5a18c93b57c6733d0b847928f63ccb1eedbddf17e9ea5e5211a6a20ade3729c68649948362
|
|
7
|
+
data.tar.gz: cab3fffb0b2e60c42af9cb68de4a74c6eb29e6673743ed0eb8a1826bef182e1b3268e8e895565c70625dffd1d5dcc8ee2d1aa13f38d5dbc5688c3a1bcbf3233f
|
data/CHANGELOG.md
CHANGED
|
@@ -7327,6 +7327,11 @@ module Google
|
|
|
7327
7327
|
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
|
7328
7328
|
include Google::Apis::Core::Hashable
|
|
7329
7329
|
|
|
7330
|
+
# Consumer provided attributes for the application
|
|
7331
|
+
# Corresponds to the JSON property `attributes`
|
|
7332
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes]
|
|
7333
|
+
attr_accessor :attributes
|
|
7334
|
+
|
|
7330
7335
|
# The resource name of an Application. Format: `projects/`host-project-id`/
|
|
7331
7336
|
# locations/`location`/applications/`application-id``
|
|
7332
7337
|
# Corresponds to the JSON property `name`
|
|
@@ -7339,10 +7344,111 @@ module Google
|
|
|
7339
7344
|
|
|
7340
7345
|
# Update properties of this object
|
|
7341
7346
|
def update!(**args)
|
|
7347
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
|
7342
7348
|
@name = args[:name] if args.key?(:name)
|
|
7343
7349
|
end
|
|
7344
7350
|
end
|
|
7345
7351
|
|
|
7352
|
+
# Consumer provided attributes for the application
|
|
7353
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
|
|
7354
|
+
include Google::Apis::Core::Hashable
|
|
7355
|
+
|
|
7356
|
+
# Business team that ensures user needs are met and value is delivered
|
|
7357
|
+
# Corresponds to the JSON property `businessOwners`
|
|
7358
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
|
|
7359
|
+
attr_accessor :business_owners
|
|
7360
|
+
|
|
7361
|
+
# Criticality of the Application, Service, or Workload
|
|
7362
|
+
# Corresponds to the JSON property `criticality`
|
|
7363
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality]
|
|
7364
|
+
attr_accessor :criticality
|
|
7365
|
+
|
|
7366
|
+
# Developer team that owns development and coding.
|
|
7367
|
+
# Corresponds to the JSON property `developerOwners`
|
|
7368
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
|
|
7369
|
+
attr_accessor :developer_owners
|
|
7370
|
+
|
|
7371
|
+
# Environment of the Application, Service, or Workload
|
|
7372
|
+
# Corresponds to the JSON property `environment`
|
|
7373
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment]
|
|
7374
|
+
attr_accessor :environment
|
|
7375
|
+
|
|
7376
|
+
# Operator team that ensures runtime and operations.
|
|
7377
|
+
# Corresponds to the JSON property `operatorOwners`
|
|
7378
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
|
|
7379
|
+
attr_accessor :operator_owners
|
|
7380
|
+
|
|
7381
|
+
def initialize(**args)
|
|
7382
|
+
update!(**args)
|
|
7383
|
+
end
|
|
7384
|
+
|
|
7385
|
+
# Update properties of this object
|
|
7386
|
+
def update!(**args)
|
|
7387
|
+
@business_owners = args[:business_owners] if args.key?(:business_owners)
|
|
7388
|
+
@criticality = args[:criticality] if args.key?(:criticality)
|
|
7389
|
+
@developer_owners = args[:developer_owners] if args.key?(:developer_owners)
|
|
7390
|
+
@environment = args[:environment] if args.key?(:environment)
|
|
7391
|
+
@operator_owners = args[:operator_owners] if args.key?(:operator_owners)
|
|
7392
|
+
end
|
|
7393
|
+
end
|
|
7394
|
+
|
|
7395
|
+
# Contact information of stakeholders.
|
|
7396
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
|
|
7397
|
+
include Google::Apis::Core::Hashable
|
|
7398
|
+
|
|
7399
|
+
# Email address of the contacts.
|
|
7400
|
+
# Corresponds to the JSON property `email`
|
|
7401
|
+
# @return [String]
|
|
7402
|
+
attr_accessor :email
|
|
7403
|
+
|
|
7404
|
+
def initialize(**args)
|
|
7405
|
+
update!(**args)
|
|
7406
|
+
end
|
|
7407
|
+
|
|
7408
|
+
# Update properties of this object
|
|
7409
|
+
def update!(**args)
|
|
7410
|
+
@email = args[:email] if args.key?(:email)
|
|
7411
|
+
end
|
|
7412
|
+
end
|
|
7413
|
+
|
|
7414
|
+
# Criticality of the Application, Service, or Workload
|
|
7415
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
|
|
7416
|
+
include Google::Apis::Core::Hashable
|
|
7417
|
+
|
|
7418
|
+
# Criticality Type.
|
|
7419
|
+
# Corresponds to the JSON property `type`
|
|
7420
|
+
# @return [String]
|
|
7421
|
+
attr_accessor :type
|
|
7422
|
+
|
|
7423
|
+
def initialize(**args)
|
|
7424
|
+
update!(**args)
|
|
7425
|
+
end
|
|
7426
|
+
|
|
7427
|
+
# Update properties of this object
|
|
7428
|
+
def update!(**args)
|
|
7429
|
+
@type = args[:type] if args.key?(:type)
|
|
7430
|
+
end
|
|
7431
|
+
end
|
|
7432
|
+
|
|
7433
|
+
# Environment of the Application, Service, or Workload
|
|
7434
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
|
|
7435
|
+
include Google::Apis::Core::Hashable
|
|
7436
|
+
|
|
7437
|
+
# Environment Type.
|
|
7438
|
+
# Corresponds to the JSON property `type`
|
|
7439
|
+
# @return [String]
|
|
7440
|
+
attr_accessor :type
|
|
7441
|
+
|
|
7442
|
+
def initialize(**args)
|
|
7443
|
+
update!(**args)
|
|
7444
|
+
end
|
|
7445
|
+
|
|
7446
|
+
# Update properties of this object
|
|
7447
|
+
def update!(**args)
|
|
7448
|
+
@type = args[:type] if args.key?(:type)
|
|
7449
|
+
end
|
|
7450
|
+
end
|
|
7451
|
+
|
|
7346
7452
|
# The AWS metadata of a resource associated with an issue.
|
|
7347
7453
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
|
7348
7454
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module SecuritycenterV1beta2
|
|
18
18
|
# Version of the google-apis-securitycenter_v1beta2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.92.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
|
|
@@ -970,6 +970,30 @@ module Google
|
|
|
970
970
|
include Google::Apis::Core::JsonObjectSupport
|
|
971
971
|
end
|
|
972
972
|
|
|
973
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
|
|
974
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
975
|
+
|
|
976
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
977
|
+
end
|
|
978
|
+
|
|
979
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
|
|
980
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
981
|
+
|
|
982
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
983
|
+
end
|
|
984
|
+
|
|
985
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
|
|
986
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
987
|
+
|
|
988
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
989
|
+
end
|
|
990
|
+
|
|
991
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
|
|
992
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
993
|
+
|
|
994
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
995
|
+
end
|
|
996
|
+
|
|
973
997
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
|
974
998
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
975
999
|
|
|
@@ -3472,10 +3496,49 @@ module Google
|
|
|
3472
3496
|
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
|
3473
3497
|
# @private
|
|
3474
3498
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3499
|
+
property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes::Representation
|
|
3500
|
+
|
|
3475
3501
|
property :name, as: 'name'
|
|
3476
3502
|
end
|
|
3477
3503
|
end
|
|
3478
3504
|
|
|
3505
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
|
|
3506
|
+
# @private
|
|
3507
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3508
|
+
collection :business_owners, as: 'businessOwners', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
|
|
3509
|
+
|
|
3510
|
+
property :criticality, as: 'criticality', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality::Representation
|
|
3511
|
+
|
|
3512
|
+
collection :developer_owners, as: 'developerOwners', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
|
|
3513
|
+
|
|
3514
|
+
property :environment, as: 'environment', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment::Representation
|
|
3515
|
+
|
|
3516
|
+
collection :operator_owners, as: 'operatorOwners', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
|
|
3517
|
+
|
|
3518
|
+
end
|
|
3519
|
+
end
|
|
3520
|
+
|
|
3521
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
|
|
3522
|
+
# @private
|
|
3523
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3524
|
+
property :email, as: 'email'
|
|
3525
|
+
end
|
|
3526
|
+
end
|
|
3527
|
+
|
|
3528
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
|
|
3529
|
+
# @private
|
|
3530
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3531
|
+
property :type, as: 'type'
|
|
3532
|
+
end
|
|
3533
|
+
end
|
|
3534
|
+
|
|
3535
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
|
|
3536
|
+
# @private
|
|
3537
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3538
|
+
property :type, as: 'type'
|
|
3539
|
+
end
|
|
3540
|
+
end
|
|
3541
|
+
|
|
3479
3542
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
|
3480
3543
|
# @private
|
|
3481
3544
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-securitycenter_v1beta2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.92.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.92.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|