google-apis-securitycenter_v1beta1 0.100.0 → 0.101.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: 55d65856ad281e4903f6877363c2b0129627e4da0438aa04c7316bbaef8f6512
|
|
4
|
+
data.tar.gz: c5e0eb40fedc59d0bb9e8df1d11919096cb0ed20556a1167bdbffcb996a51797
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9dd6bda3e5052d82b9ca3b4b9ef725a8034fcb2400a8cfb8ecca6579d84f7abc0ab0ee417a4a284e327f194a29ae4f9e49b1a37a84b915e9105442020ef0b498
|
|
7
|
+
data.tar.gz: b885f0bc05a5ba2ad9e0607b97596a8954bdc09c0338773528e4def6ee5270f9710021ac1be3e79254513386f9eab8b2f427e3fc559f0dd487b7534f738e6a19
|
data/CHANGELOG.md
CHANGED
|
@@ -337,6 +337,64 @@ module Google
|
|
|
337
337
|
end
|
|
338
338
|
end
|
|
339
339
|
|
|
340
|
+
# Represents the result of evaluating artifact guard policies.
|
|
341
|
+
class ArtifactGuardPolicies
|
|
342
|
+
include Google::Apis::Core::Hashable
|
|
343
|
+
|
|
344
|
+
# A list of failing policies.
|
|
345
|
+
# Corresponds to the JSON property `failingPolicies`
|
|
346
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::ArtifactGuardPolicy>]
|
|
347
|
+
attr_accessor :failing_policies
|
|
348
|
+
|
|
349
|
+
# The ID of the resource that has policies configured for it.
|
|
350
|
+
# Corresponds to the JSON property `resourceId`
|
|
351
|
+
# @return [String]
|
|
352
|
+
attr_accessor :resource_id
|
|
353
|
+
|
|
354
|
+
def initialize(**args)
|
|
355
|
+
update!(**args)
|
|
356
|
+
end
|
|
357
|
+
|
|
358
|
+
# Update properties of this object
|
|
359
|
+
def update!(**args)
|
|
360
|
+
@failing_policies = args[:failing_policies] if args.key?(:failing_policies)
|
|
361
|
+
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
|
362
|
+
end
|
|
363
|
+
end
|
|
364
|
+
|
|
365
|
+
# Represents an artifact guard policy.
|
|
366
|
+
class ArtifactGuardPolicy
|
|
367
|
+
include Google::Apis::Core::Hashable
|
|
368
|
+
|
|
369
|
+
# The reason for the policy failure, for example, "severity=HIGH AND
|
|
370
|
+
# max_vuln_count=2".
|
|
371
|
+
# Corresponds to the JSON property `failureReason`
|
|
372
|
+
# @return [String]
|
|
373
|
+
attr_accessor :failure_reason
|
|
374
|
+
|
|
375
|
+
# The ID of the failing policy, for example, "organizations/3392779/locations/
|
|
376
|
+
# global/policies/prod-policy".
|
|
377
|
+
# Corresponds to the JSON property `policyId`
|
|
378
|
+
# @return [String]
|
|
379
|
+
attr_accessor :policy_id
|
|
380
|
+
|
|
381
|
+
# The type of the policy evaluation.
|
|
382
|
+
# Corresponds to the JSON property `type`
|
|
383
|
+
# @return [String]
|
|
384
|
+
attr_accessor :type
|
|
385
|
+
|
|
386
|
+
def initialize(**args)
|
|
387
|
+
update!(**args)
|
|
388
|
+
end
|
|
389
|
+
|
|
390
|
+
# Update properties of this object
|
|
391
|
+
def update!(**args)
|
|
392
|
+
@failure_reason = args[:failure_reason] if args.key?(:failure_reason)
|
|
393
|
+
@policy_id = args[:policy_id] if args.key?(:policy_id)
|
|
394
|
+
@type = args[:type] if args.key?(:type)
|
|
395
|
+
end
|
|
396
|
+
end
|
|
397
|
+
|
|
340
398
|
# Security Command Center representation of a Google Cloud resource. The Asset
|
|
341
399
|
# is a Security Command Center resource that captures information about a single
|
|
342
400
|
# Google Cloud resource. All modifications to an Asset are only within the
|
|
@@ -2290,6 +2348,11 @@ module Google
|
|
|
2290
2348
|
# @return [Google::Apis::SecuritycenterV1beta1::DiskPath]
|
|
2291
2349
|
attr_accessor :disk_path
|
|
2292
2350
|
|
|
2351
|
+
# The load state of the file.
|
|
2352
|
+
# Corresponds to the JSON property `fileLoadState`
|
|
2353
|
+
# @return [String]
|
|
2354
|
+
attr_accessor :file_load_state
|
|
2355
|
+
|
|
2293
2356
|
# The length in bytes of the file prefix that was hashed. If hashed_size == size,
|
|
2294
2357
|
# any hashes reported represent the entire file.
|
|
2295
2358
|
# Corresponds to the JSON property `hashedSize`
|
|
@@ -2331,6 +2394,7 @@ module Google
|
|
|
2331
2394
|
def update!(**args)
|
|
2332
2395
|
@contents = args[:contents] if args.key?(:contents)
|
|
2333
2396
|
@disk_path = args[:disk_path] if args.key?(:disk_path)
|
|
2397
|
+
@file_load_state = args[:file_load_state] if args.key?(:file_load_state)
|
|
2334
2398
|
@hashed_size = args[:hashed_size] if args.key?(:hashed_size)
|
|
2335
2399
|
@operations = args[:operations] if args.key?(:operations)
|
|
2336
2400
|
@partially_hashed = args[:partially_hashed] if args.key?(:partially_hashed)
|
|
@@ -2387,6 +2451,11 @@ module Google
|
|
|
2387
2451
|
# @return [Google::Apis::SecuritycenterV1beta1::Application]
|
|
2388
2452
|
attr_accessor :application
|
|
2389
2453
|
|
|
2454
|
+
# Represents the result of evaluating artifact guard policies.
|
|
2455
|
+
# Corresponds to the JSON property `artifactGuardPolicies`
|
|
2456
|
+
# @return [Google::Apis::SecuritycenterV1beta1::ArtifactGuardPolicies]
|
|
2457
|
+
attr_accessor :artifact_guard_policies
|
|
2458
|
+
|
|
2390
2459
|
# An attack exposure contains the results of an attack path simulation run.
|
|
2391
2460
|
# Corresponds to the JSON property `attackExposure`
|
|
2392
2461
|
# @return [Google::Apis::SecuritycenterV1beta1::AttackExposure]
|
|
@@ -2699,6 +2768,11 @@ module Google
|
|
|
2699
2768
|
# @return [String]
|
|
2700
2769
|
attr_accessor :resource_name
|
|
2701
2770
|
|
|
2771
|
+
# Details about a secret or credential associated with the finding.
|
|
2772
|
+
# Corresponds to the JSON property `secret`
|
|
2773
|
+
# @return [Google::Apis::SecuritycenterV1beta1::Secret]
|
|
2774
|
+
attr_accessor :secret
|
|
2775
|
+
|
|
2702
2776
|
# User specified security marks that are attached to the parent Security Command
|
|
2703
2777
|
# Center resource. Security marks are scoped within a Security Command Center
|
|
2704
2778
|
# organization -- they can be modified and viewed by all users who have proper
|
|
@@ -2761,6 +2835,7 @@ module Google
|
|
|
2761
2835
|
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
|
2762
2836
|
@ai_model = args[:ai_model] if args.key?(:ai_model)
|
|
2763
2837
|
@application = args[:application] if args.key?(:application)
|
|
2838
|
+
@artifact_guard_policies = args[:artifact_guard_policies] if args.key?(:artifact_guard_policies)
|
|
2764
2839
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
|
2765
2840
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
|
2766
2841
|
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
|
@@ -2811,6 +2886,7 @@ module Google
|
|
|
2811
2886
|
@parent_display_name = args[:parent_display_name] if args.key?(:parent_display_name)
|
|
2812
2887
|
@processes = args[:processes] if args.key?(:processes)
|
|
2813
2888
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
|
2889
|
+
@secret = args[:secret] if args.key?(:secret)
|
|
2814
2890
|
@security_marks = args[:security_marks] if args.key?(:security_marks)
|
|
2815
2891
|
@security_posture = args[:security_posture] if args.key?(:security_posture)
|
|
2816
2892
|
@severity = args[:severity] if args.key?(:severity)
|
|
@@ -4829,6 +4905,64 @@ module Google
|
|
|
4829
4905
|
end
|
|
4830
4906
|
end
|
|
4831
4907
|
|
|
4908
|
+
# Represents the result of evaluating artifact guard policies.
|
|
4909
|
+
class GoogleCloudSecuritycenterV2ArtifactGuardPolicies
|
|
4910
|
+
include Google::Apis::Core::Hashable
|
|
4911
|
+
|
|
4912
|
+
# A list of failing policies.
|
|
4913
|
+
# Corresponds to the JSON property `failingPolicies`
|
|
4914
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ArtifactGuardPolicy>]
|
|
4915
|
+
attr_accessor :failing_policies
|
|
4916
|
+
|
|
4917
|
+
# The ID of the resource that has policies configured for it.
|
|
4918
|
+
# Corresponds to the JSON property `resourceId`
|
|
4919
|
+
# @return [String]
|
|
4920
|
+
attr_accessor :resource_id
|
|
4921
|
+
|
|
4922
|
+
def initialize(**args)
|
|
4923
|
+
update!(**args)
|
|
4924
|
+
end
|
|
4925
|
+
|
|
4926
|
+
# Update properties of this object
|
|
4927
|
+
def update!(**args)
|
|
4928
|
+
@failing_policies = args[:failing_policies] if args.key?(:failing_policies)
|
|
4929
|
+
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
|
4930
|
+
end
|
|
4931
|
+
end
|
|
4932
|
+
|
|
4933
|
+
# Represents an artifact guard policy.
|
|
4934
|
+
class GoogleCloudSecuritycenterV2ArtifactGuardPolicy
|
|
4935
|
+
include Google::Apis::Core::Hashable
|
|
4936
|
+
|
|
4937
|
+
# The reason for the policy failure, for example, "severity=HIGH AND
|
|
4938
|
+
# max_vuln_count=2".
|
|
4939
|
+
# Corresponds to the JSON property `failureReason`
|
|
4940
|
+
# @return [String]
|
|
4941
|
+
attr_accessor :failure_reason
|
|
4942
|
+
|
|
4943
|
+
# The ID of the failing policy, for example, "organizations/3392779/locations/
|
|
4944
|
+
# global/policies/prod-policy".
|
|
4945
|
+
# Corresponds to the JSON property `policyId`
|
|
4946
|
+
# @return [String]
|
|
4947
|
+
attr_accessor :policy_id
|
|
4948
|
+
|
|
4949
|
+
# The type of the policy evaluation.
|
|
4950
|
+
# Corresponds to the JSON property `type`
|
|
4951
|
+
# @return [String]
|
|
4952
|
+
attr_accessor :type
|
|
4953
|
+
|
|
4954
|
+
def initialize(**args)
|
|
4955
|
+
update!(**args)
|
|
4956
|
+
end
|
|
4957
|
+
|
|
4958
|
+
# Update properties of this object
|
|
4959
|
+
def update!(**args)
|
|
4960
|
+
@failure_reason = args[:failure_reason] if args.key?(:failure_reason)
|
|
4961
|
+
@policy_id = args[:policy_id] if args.key?(:policy_id)
|
|
4962
|
+
@type = args[:type] if args.key?(:type)
|
|
4963
|
+
end
|
|
4964
|
+
end
|
|
4965
|
+
|
|
4832
4966
|
# Information about DDoS attack volume and classification.
|
|
4833
4967
|
class GoogleCloudSecuritycenterV2Attack
|
|
4834
4968
|
include Google::Apis::Core::Hashable
|
|
@@ -6615,6 +6749,11 @@ module Google
|
|
|
6615
6749
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DiskPath]
|
|
6616
6750
|
attr_accessor :disk_path
|
|
6617
6751
|
|
|
6752
|
+
# The load state of the file.
|
|
6753
|
+
# Corresponds to the JSON property `fileLoadState`
|
|
6754
|
+
# @return [String]
|
|
6755
|
+
attr_accessor :file_load_state
|
|
6756
|
+
|
|
6618
6757
|
# The length in bytes of the file prefix that was hashed. If hashed_size == size,
|
|
6619
6758
|
# any hashes reported represent the entire file.
|
|
6620
6759
|
# Corresponds to the JSON property `hashedSize`
|
|
@@ -6656,6 +6795,7 @@ module Google
|
|
|
6656
6795
|
def update!(**args)
|
|
6657
6796
|
@contents = args[:contents] if args.key?(:contents)
|
|
6658
6797
|
@disk_path = args[:disk_path] if args.key?(:disk_path)
|
|
6798
|
+
@file_load_state = args[:file_load_state] if args.key?(:file_load_state)
|
|
6659
6799
|
@hashed_size = args[:hashed_size] if args.key?(:hashed_size)
|
|
6660
6800
|
@operations = args[:operations] if args.key?(:operations)
|
|
6661
6801
|
@partially_hashed = args[:partially_hashed] if args.key?(:partially_hashed)
|
|
@@ -6712,6 +6852,11 @@ module Google
|
|
|
6712
6852
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Application]
|
|
6713
6853
|
attr_accessor :application
|
|
6714
6854
|
|
|
6855
|
+
# Represents the result of evaluating artifact guard policies.
|
|
6856
|
+
# Corresponds to the JSON property `artifactGuardPolicies`
|
|
6857
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ArtifactGuardPolicies]
|
|
6858
|
+
attr_accessor :artifact_guard_policies
|
|
6859
|
+
|
|
6715
6860
|
# An attack exposure contains the results of an attack path simulation run.
|
|
6716
6861
|
# Corresponds to the JSON property `attackExposure`
|
|
6717
6862
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AttackExposure]
|
|
@@ -7041,6 +7186,11 @@ module Google
|
|
|
7041
7186
|
# @return [String]
|
|
7042
7187
|
attr_accessor :resource_name
|
|
7043
7188
|
|
|
7189
|
+
# Details about a secret or credential associated with the finding.
|
|
7190
|
+
# Corresponds to the JSON property `secret`
|
|
7191
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Secret]
|
|
7192
|
+
attr_accessor :secret
|
|
7193
|
+
|
|
7044
7194
|
# User specified security marks that are attached to the parent Security Command
|
|
7045
7195
|
# Center resource. Security marks are scoped within a Security Command Center
|
|
7046
7196
|
# organization -- they can be modified and viewed by all users who have proper
|
|
@@ -7103,6 +7253,7 @@ module Google
|
|
|
7103
7253
|
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
|
7104
7254
|
@ai_model = args[:ai_model] if args.key?(:ai_model)
|
|
7105
7255
|
@application = args[:application] if args.key?(:application)
|
|
7256
|
+
@artifact_guard_policies = args[:artifact_guard_policies] if args.key?(:artifact_guard_policies)
|
|
7106
7257
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
|
7107
7258
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
|
7108
7259
|
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
|
@@ -7154,6 +7305,7 @@ module Google
|
|
|
7154
7305
|
@parent_display_name = args[:parent_display_name] if args.key?(:parent_display_name)
|
|
7155
7306
|
@processes = args[:processes] if args.key?(:processes)
|
|
7156
7307
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
|
7308
|
+
@secret = args[:secret] if args.key?(:secret)
|
|
7157
7309
|
@security_marks = args[:security_marks] if args.key?(:security_marks)
|
|
7158
7310
|
@security_posture = args[:security_posture] if args.key?(:security_posture)
|
|
7159
7311
|
@severity = args[:severity] if args.key?(:severity)
|
|
@@ -9488,6 +9640,108 @@ module Google
|
|
|
9488
9640
|
end
|
|
9489
9641
|
end
|
|
9490
9642
|
|
|
9643
|
+
# Details about a secret or credential associated with the finding.
|
|
9644
|
+
class GoogleCloudSecuritycenterV2Secret
|
|
9645
|
+
include Google::Apis::Core::Hashable
|
|
9646
|
+
|
|
9647
|
+
# Environment variable containing the secret.
|
|
9648
|
+
# Corresponds to the JSON property `environmentVariable`
|
|
9649
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SecretEnvironmentVariable]
|
|
9650
|
+
attr_accessor :environment_variable
|
|
9651
|
+
|
|
9652
|
+
# File path containing the secret.
|
|
9653
|
+
# Corresponds to the JSON property `filePath`
|
|
9654
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SecretFilePath]
|
|
9655
|
+
attr_accessor :file_path
|
|
9656
|
+
|
|
9657
|
+
# The status of the secret.
|
|
9658
|
+
# Corresponds to the JSON property `status`
|
|
9659
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SecretStatus]
|
|
9660
|
+
attr_accessor :status
|
|
9661
|
+
|
|
9662
|
+
# The type of secret, for example, GCP_API_KEY.
|
|
9663
|
+
# Corresponds to the JSON property `type`
|
|
9664
|
+
# @return [String]
|
|
9665
|
+
attr_accessor :type
|
|
9666
|
+
|
|
9667
|
+
def initialize(**args)
|
|
9668
|
+
update!(**args)
|
|
9669
|
+
end
|
|
9670
|
+
|
|
9671
|
+
# Update properties of this object
|
|
9672
|
+
def update!(**args)
|
|
9673
|
+
@environment_variable = args[:environment_variable] if args.key?(:environment_variable)
|
|
9674
|
+
@file_path = args[:file_path] if args.key?(:file_path)
|
|
9675
|
+
@status = args[:status] if args.key?(:status)
|
|
9676
|
+
@type = args[:type] if args.key?(:type)
|
|
9677
|
+
end
|
|
9678
|
+
end
|
|
9679
|
+
|
|
9680
|
+
# Environment variable containing the secret.
|
|
9681
|
+
class GoogleCloudSecuritycenterV2SecretEnvironmentVariable
|
|
9682
|
+
include Google::Apis::Core::Hashable
|
|
9683
|
+
|
|
9684
|
+
# Environment variable name as a JSON encoded string. Note that value is not
|
|
9685
|
+
# included since the value contains the secret data, which is sensitive core
|
|
9686
|
+
# content.
|
|
9687
|
+
# Corresponds to the JSON property `key`
|
|
9688
|
+
# @return [String]
|
|
9689
|
+
attr_accessor :key
|
|
9690
|
+
|
|
9691
|
+
def initialize(**args)
|
|
9692
|
+
update!(**args)
|
|
9693
|
+
end
|
|
9694
|
+
|
|
9695
|
+
# Update properties of this object
|
|
9696
|
+
def update!(**args)
|
|
9697
|
+
@key = args[:key] if args.key?(:key)
|
|
9698
|
+
end
|
|
9699
|
+
end
|
|
9700
|
+
|
|
9701
|
+
# File path containing the secret.
|
|
9702
|
+
class GoogleCloudSecuritycenterV2SecretFilePath
|
|
9703
|
+
include Google::Apis::Core::Hashable
|
|
9704
|
+
|
|
9705
|
+
# Path to the file.
|
|
9706
|
+
# Corresponds to the JSON property `path`
|
|
9707
|
+
# @return [String]
|
|
9708
|
+
attr_accessor :path
|
|
9709
|
+
|
|
9710
|
+
def initialize(**args)
|
|
9711
|
+
update!(**args)
|
|
9712
|
+
end
|
|
9713
|
+
|
|
9714
|
+
# Update properties of this object
|
|
9715
|
+
def update!(**args)
|
|
9716
|
+
@path = args[:path] if args.key?(:path)
|
|
9717
|
+
end
|
|
9718
|
+
end
|
|
9719
|
+
|
|
9720
|
+
# The status of the secret.
|
|
9721
|
+
class GoogleCloudSecuritycenterV2SecretStatus
|
|
9722
|
+
include Google::Apis::Core::Hashable
|
|
9723
|
+
|
|
9724
|
+
# Time that the secret was found.
|
|
9725
|
+
# Corresponds to the JSON property `lastUpdatedTime`
|
|
9726
|
+
# @return [String]
|
|
9727
|
+
attr_accessor :last_updated_time
|
|
9728
|
+
|
|
9729
|
+
# The validity of the secret.
|
|
9730
|
+
# Corresponds to the JSON property `validity`
|
|
9731
|
+
# @return [String]
|
|
9732
|
+
attr_accessor :validity
|
|
9733
|
+
|
|
9734
|
+
def initialize(**args)
|
|
9735
|
+
update!(**args)
|
|
9736
|
+
end
|
|
9737
|
+
|
|
9738
|
+
# Update properties of this object
|
|
9739
|
+
def update!(**args)
|
|
9740
|
+
@last_updated_time = args[:last_updated_time] if args.key?(:last_updated_time)
|
|
9741
|
+
@validity = args[:validity] if args.key?(:validity)
|
|
9742
|
+
end
|
|
9743
|
+
end
|
|
9744
|
+
|
|
9491
9745
|
# SecurityBulletin are notifications of vulnerabilities of Google products.
|
|
9492
9746
|
class GoogleCloudSecuritycenterV2SecurityBulletin
|
|
9493
9747
|
include Google::Apis::Core::Hashable
|
|
@@ -11787,6 +12041,108 @@ module Google
|
|
|
11787
12041
|
end
|
|
11788
12042
|
end
|
|
11789
12043
|
|
|
12044
|
+
# Details about a secret or credential associated with the finding.
|
|
12045
|
+
class Secret
|
|
12046
|
+
include Google::Apis::Core::Hashable
|
|
12047
|
+
|
|
12048
|
+
# Environment variable containing the secret.
|
|
12049
|
+
# Corresponds to the JSON property `environmentVariable`
|
|
12050
|
+
# @return [Google::Apis::SecuritycenterV1beta1::SecretEnvironmentVariable]
|
|
12051
|
+
attr_accessor :environment_variable
|
|
12052
|
+
|
|
12053
|
+
# File path containing the secret.
|
|
12054
|
+
# Corresponds to the JSON property `filePath`
|
|
12055
|
+
# @return [Google::Apis::SecuritycenterV1beta1::SecretFilePath]
|
|
12056
|
+
attr_accessor :file_path
|
|
12057
|
+
|
|
12058
|
+
# The status of the secret.
|
|
12059
|
+
# Corresponds to the JSON property `status`
|
|
12060
|
+
# @return [Google::Apis::SecuritycenterV1beta1::SecretStatus]
|
|
12061
|
+
attr_accessor :status
|
|
12062
|
+
|
|
12063
|
+
# The type of secret, for example, GCP_API_KEY.
|
|
12064
|
+
# Corresponds to the JSON property `type`
|
|
12065
|
+
# @return [String]
|
|
12066
|
+
attr_accessor :type
|
|
12067
|
+
|
|
12068
|
+
def initialize(**args)
|
|
12069
|
+
update!(**args)
|
|
12070
|
+
end
|
|
12071
|
+
|
|
12072
|
+
# Update properties of this object
|
|
12073
|
+
def update!(**args)
|
|
12074
|
+
@environment_variable = args[:environment_variable] if args.key?(:environment_variable)
|
|
12075
|
+
@file_path = args[:file_path] if args.key?(:file_path)
|
|
12076
|
+
@status = args[:status] if args.key?(:status)
|
|
12077
|
+
@type = args[:type] if args.key?(:type)
|
|
12078
|
+
end
|
|
12079
|
+
end
|
|
12080
|
+
|
|
12081
|
+
# Environment variable containing the secret.
|
|
12082
|
+
class SecretEnvironmentVariable
|
|
12083
|
+
include Google::Apis::Core::Hashable
|
|
12084
|
+
|
|
12085
|
+
# Environment variable name as a JSON encoded string. Note that value is not
|
|
12086
|
+
# included since the value contains the secret data, which is sensitive core
|
|
12087
|
+
# content.
|
|
12088
|
+
# Corresponds to the JSON property `key`
|
|
12089
|
+
# @return [String]
|
|
12090
|
+
attr_accessor :key
|
|
12091
|
+
|
|
12092
|
+
def initialize(**args)
|
|
12093
|
+
update!(**args)
|
|
12094
|
+
end
|
|
12095
|
+
|
|
12096
|
+
# Update properties of this object
|
|
12097
|
+
def update!(**args)
|
|
12098
|
+
@key = args[:key] if args.key?(:key)
|
|
12099
|
+
end
|
|
12100
|
+
end
|
|
12101
|
+
|
|
12102
|
+
# File path containing the secret.
|
|
12103
|
+
class SecretFilePath
|
|
12104
|
+
include Google::Apis::Core::Hashable
|
|
12105
|
+
|
|
12106
|
+
# Path to the file.
|
|
12107
|
+
# Corresponds to the JSON property `path`
|
|
12108
|
+
# @return [String]
|
|
12109
|
+
attr_accessor :path
|
|
12110
|
+
|
|
12111
|
+
def initialize(**args)
|
|
12112
|
+
update!(**args)
|
|
12113
|
+
end
|
|
12114
|
+
|
|
12115
|
+
# Update properties of this object
|
|
12116
|
+
def update!(**args)
|
|
12117
|
+
@path = args[:path] if args.key?(:path)
|
|
12118
|
+
end
|
|
12119
|
+
end
|
|
12120
|
+
|
|
12121
|
+
# The status of the secret.
|
|
12122
|
+
class SecretStatus
|
|
12123
|
+
include Google::Apis::Core::Hashable
|
|
12124
|
+
|
|
12125
|
+
# Time that the secret was found.
|
|
12126
|
+
# Corresponds to the JSON property `lastUpdatedTime`
|
|
12127
|
+
# @return [String]
|
|
12128
|
+
attr_accessor :last_updated_time
|
|
12129
|
+
|
|
12130
|
+
# The validity of the secret.
|
|
12131
|
+
# Corresponds to the JSON property `validity`
|
|
12132
|
+
# @return [String]
|
|
12133
|
+
attr_accessor :validity
|
|
12134
|
+
|
|
12135
|
+
def initialize(**args)
|
|
12136
|
+
update!(**args)
|
|
12137
|
+
end
|
|
12138
|
+
|
|
12139
|
+
# Update properties of this object
|
|
12140
|
+
def update!(**args)
|
|
12141
|
+
@last_updated_time = args[:last_updated_time] if args.key?(:last_updated_time)
|
|
12142
|
+
@validity = args[:validity] if args.key?(:validity)
|
|
12143
|
+
end
|
|
12144
|
+
end
|
|
12145
|
+
|
|
11790
12146
|
# SecurityBulletin are notifications of vulnerabilities of Google products.
|
|
11791
12147
|
class SecurityBulletin
|
|
11792
12148
|
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.101.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 = "20260105"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -64,6 +64,18 @@ module Google
|
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
|
65
65
|
end
|
|
66
66
|
|
|
67
|
+
class ArtifactGuardPolicies
|
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
|
+
|
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
class ArtifactGuardPolicy
|
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
75
|
+
|
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
77
|
+
end
|
|
78
|
+
|
|
67
79
|
class Asset
|
|
68
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
81
|
|
|
@@ -652,6 +664,18 @@ module Google
|
|
|
652
664
|
include Google::Apis::Core::JsonObjectSupport
|
|
653
665
|
end
|
|
654
666
|
|
|
667
|
+
class GoogleCloudSecuritycenterV2ArtifactGuardPolicies
|
|
668
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
669
|
+
|
|
670
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
671
|
+
end
|
|
672
|
+
|
|
673
|
+
class GoogleCloudSecuritycenterV2ArtifactGuardPolicy
|
|
674
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
675
|
+
|
|
676
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
677
|
+
end
|
|
678
|
+
|
|
655
679
|
class GoogleCloudSecuritycenterV2Attack
|
|
656
680
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
657
681
|
|
|
@@ -1330,6 +1354,30 @@ module Google
|
|
|
1330
1354
|
include Google::Apis::Core::JsonObjectSupport
|
|
1331
1355
|
end
|
|
1332
1356
|
|
|
1357
|
+
class GoogleCloudSecuritycenterV2Secret
|
|
1358
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1359
|
+
|
|
1360
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1361
|
+
end
|
|
1362
|
+
|
|
1363
|
+
class GoogleCloudSecuritycenterV2SecretEnvironmentVariable
|
|
1364
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1365
|
+
|
|
1366
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1367
|
+
end
|
|
1368
|
+
|
|
1369
|
+
class GoogleCloudSecuritycenterV2SecretFilePath
|
|
1370
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1371
|
+
|
|
1372
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1373
|
+
end
|
|
1374
|
+
|
|
1375
|
+
class GoogleCloudSecuritycenterV2SecretStatus
|
|
1376
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1377
|
+
|
|
1378
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1379
|
+
end
|
|
1380
|
+
|
|
1333
1381
|
class GoogleCloudSecuritycenterV2SecurityBulletin
|
|
1334
1382
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1335
1383
|
|
|
@@ -1696,6 +1744,30 @@ module Google
|
|
|
1696
1744
|
include Google::Apis::Core::JsonObjectSupport
|
|
1697
1745
|
end
|
|
1698
1746
|
|
|
1747
|
+
class Secret
|
|
1748
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1749
|
+
|
|
1750
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1751
|
+
end
|
|
1752
|
+
|
|
1753
|
+
class SecretEnvironmentVariable
|
|
1754
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1755
|
+
|
|
1756
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1757
|
+
end
|
|
1758
|
+
|
|
1759
|
+
class SecretFilePath
|
|
1760
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1761
|
+
|
|
1762
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1763
|
+
end
|
|
1764
|
+
|
|
1765
|
+
class SecretStatus
|
|
1766
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1767
|
+
|
|
1768
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1769
|
+
end
|
|
1770
|
+
|
|
1699
1771
|
class SecurityBulletin
|
|
1700
1772
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1701
1773
|
|
|
@@ -1904,6 +1976,24 @@ module Google
|
|
|
1904
1976
|
end
|
|
1905
1977
|
end
|
|
1906
1978
|
|
|
1979
|
+
class ArtifactGuardPolicies
|
|
1980
|
+
# @private
|
|
1981
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1982
|
+
collection :failing_policies, as: 'failingPolicies', class: Google::Apis::SecuritycenterV1beta1::ArtifactGuardPolicy, decorator: Google::Apis::SecuritycenterV1beta1::ArtifactGuardPolicy::Representation
|
|
1983
|
+
|
|
1984
|
+
property :resource_id, as: 'resourceId'
|
|
1985
|
+
end
|
|
1986
|
+
end
|
|
1987
|
+
|
|
1988
|
+
class ArtifactGuardPolicy
|
|
1989
|
+
# @private
|
|
1990
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1991
|
+
property :failure_reason, as: 'failureReason'
|
|
1992
|
+
property :policy_id, as: 'policyId'
|
|
1993
|
+
property :type, as: 'type'
|
|
1994
|
+
end
|
|
1995
|
+
end
|
|
1996
|
+
|
|
1907
1997
|
class Asset
|
|
1908
1998
|
# @private
|
|
1909
1999
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2413,6 +2503,7 @@ module Google
|
|
|
2413
2503
|
property :contents, as: 'contents'
|
|
2414
2504
|
property :disk_path, as: 'diskPath', class: Google::Apis::SecuritycenterV1beta1::DiskPath, decorator: Google::Apis::SecuritycenterV1beta1::DiskPath::Representation
|
|
2415
2505
|
|
|
2506
|
+
property :file_load_state, as: 'fileLoadState'
|
|
2416
2507
|
property :hashed_size, :numeric_string => true, as: 'hashedSize'
|
|
2417
2508
|
collection :operations, as: 'operations', class: Google::Apis::SecuritycenterV1beta1::FileOperation, decorator: Google::Apis::SecuritycenterV1beta1::FileOperation::Representation
|
|
2418
2509
|
|
|
@@ -2441,6 +2532,8 @@ module Google
|
|
|
2441
2532
|
|
|
2442
2533
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::Application, decorator: Google::Apis::SecuritycenterV1beta1::Application::Representation
|
|
2443
2534
|
|
|
2535
|
+
property :artifact_guard_policies, as: 'artifactGuardPolicies', class: Google::Apis::SecuritycenterV1beta1::ArtifactGuardPolicies, decorator: Google::Apis::SecuritycenterV1beta1::ArtifactGuardPolicies::Representation
|
|
2536
|
+
|
|
2444
2537
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1beta1::AttackExposure, decorator: Google::Apis::SecuritycenterV1beta1::AttackExposure::Representation
|
|
2445
2538
|
|
|
2446
2539
|
property :backup_disaster_recovery, as: 'backupDisasterRecovery', class: Google::Apis::SecuritycenterV1beta1::BackupDisasterRecovery, decorator: Google::Apis::SecuritycenterV1beta1::BackupDisasterRecovery::Representation
|
|
@@ -2525,6 +2618,8 @@ module Google
|
|
|
2525
2618
|
collection :processes, as: 'processes', class: Google::Apis::SecuritycenterV1beta1::Process, decorator: Google::Apis::SecuritycenterV1beta1::Process::Representation
|
|
2526
2619
|
|
|
2527
2620
|
property :resource_name, as: 'resourceName'
|
|
2621
|
+
property :secret, as: 'secret', class: Google::Apis::SecuritycenterV1beta1::Secret, decorator: Google::Apis::SecuritycenterV1beta1::Secret::Representation
|
|
2622
|
+
|
|
2528
2623
|
property :security_marks, as: 'securityMarks', class: Google::Apis::SecuritycenterV1beta1::SecurityMarks, decorator: Google::Apis::SecuritycenterV1beta1::SecurityMarks::Representation
|
|
2529
2624
|
|
|
2530
2625
|
property :security_posture, as: 'securityPosture', class: Google::Apis::SecuritycenterV1beta1::SecurityPosture, decorator: Google::Apis::SecuritycenterV1beta1::SecurityPosture::Representation
|
|
@@ -3023,6 +3118,24 @@ module Google
|
|
|
3023
3118
|
end
|
|
3024
3119
|
end
|
|
3025
3120
|
|
|
3121
|
+
class GoogleCloudSecuritycenterV2ArtifactGuardPolicies
|
|
3122
|
+
# @private
|
|
3123
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3124
|
+
collection :failing_policies, as: 'failingPolicies', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ArtifactGuardPolicy, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ArtifactGuardPolicy::Representation
|
|
3125
|
+
|
|
3126
|
+
property :resource_id, as: 'resourceId'
|
|
3127
|
+
end
|
|
3128
|
+
end
|
|
3129
|
+
|
|
3130
|
+
class GoogleCloudSecuritycenterV2ArtifactGuardPolicy
|
|
3131
|
+
# @private
|
|
3132
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3133
|
+
property :failure_reason, as: 'failureReason'
|
|
3134
|
+
property :policy_id, as: 'policyId'
|
|
3135
|
+
property :type, as: 'type'
|
|
3136
|
+
end
|
|
3137
|
+
end
|
|
3138
|
+
|
|
3026
3139
|
class GoogleCloudSecuritycenterV2Attack
|
|
3027
3140
|
# @private
|
|
3028
3141
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3490,6 +3603,7 @@ module Google
|
|
|
3490
3603
|
property :contents, as: 'contents'
|
|
3491
3604
|
property :disk_path, as: 'diskPath', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DiskPath, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DiskPath::Representation
|
|
3492
3605
|
|
|
3606
|
+
property :file_load_state, as: 'fileLoadState'
|
|
3493
3607
|
property :hashed_size, :numeric_string => true, as: 'hashedSize'
|
|
3494
3608
|
collection :operations, as: 'operations', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2FileOperation, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2FileOperation::Representation
|
|
3495
3609
|
|
|
@@ -3518,6 +3632,8 @@ module Google
|
|
|
3518
3632
|
|
|
3519
3633
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Application::Representation
|
|
3520
3634
|
|
|
3635
|
+
property :artifact_guard_policies, as: 'artifactGuardPolicies', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ArtifactGuardPolicies, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ArtifactGuardPolicies::Representation
|
|
3636
|
+
|
|
3521
3637
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AttackExposure, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AttackExposure::Representation
|
|
3522
3638
|
|
|
3523
3639
|
property :backup_disaster_recovery, as: 'backupDisasterRecovery', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2BackupDisasterRecovery, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2BackupDisasterRecovery::Representation
|
|
@@ -3603,6 +3719,8 @@ module Google
|
|
|
3603
3719
|
collection :processes, as: 'processes', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Process, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Process::Representation
|
|
3604
3720
|
|
|
3605
3721
|
property :resource_name, as: 'resourceName'
|
|
3722
|
+
property :secret, as: 'secret', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Secret, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Secret::Representation
|
|
3723
|
+
|
|
3606
3724
|
property :security_marks, as: 'securityMarks', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SecurityMarks, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SecurityMarks::Representation
|
|
3607
3725
|
|
|
3608
3726
|
property :security_posture, as: 'securityPosture', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SecurityPosture, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SecurityPosture::Representation
|
|
@@ -4293,6 +4411,41 @@ module Google
|
|
|
4293
4411
|
end
|
|
4294
4412
|
end
|
|
4295
4413
|
|
|
4414
|
+
class GoogleCloudSecuritycenterV2Secret
|
|
4415
|
+
# @private
|
|
4416
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4417
|
+
property :environment_variable, as: 'environmentVariable', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SecretEnvironmentVariable, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SecretEnvironmentVariable::Representation
|
|
4418
|
+
|
|
4419
|
+
property :file_path, as: 'filePath', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SecretFilePath, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SecretFilePath::Representation
|
|
4420
|
+
|
|
4421
|
+
property :status, as: 'status', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SecretStatus, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SecretStatus::Representation
|
|
4422
|
+
|
|
4423
|
+
property :type, as: 'type'
|
|
4424
|
+
end
|
|
4425
|
+
end
|
|
4426
|
+
|
|
4427
|
+
class GoogleCloudSecuritycenterV2SecretEnvironmentVariable
|
|
4428
|
+
# @private
|
|
4429
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4430
|
+
property :key, as: 'key'
|
|
4431
|
+
end
|
|
4432
|
+
end
|
|
4433
|
+
|
|
4434
|
+
class GoogleCloudSecuritycenterV2SecretFilePath
|
|
4435
|
+
# @private
|
|
4436
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4437
|
+
property :path, as: 'path'
|
|
4438
|
+
end
|
|
4439
|
+
end
|
|
4440
|
+
|
|
4441
|
+
class GoogleCloudSecuritycenterV2SecretStatus
|
|
4442
|
+
# @private
|
|
4443
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4444
|
+
property :last_updated_time, as: 'lastUpdatedTime'
|
|
4445
|
+
property :validity, as: 'validity'
|
|
4446
|
+
end
|
|
4447
|
+
end
|
|
4448
|
+
|
|
4296
4449
|
class GoogleCloudSecuritycenterV2SecurityBulletin
|
|
4297
4450
|
# @private
|
|
4298
4451
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4905,6 +5058,41 @@ module Google
|
|
|
4905
5058
|
end
|
|
4906
5059
|
end
|
|
4907
5060
|
|
|
5061
|
+
class Secret
|
|
5062
|
+
# @private
|
|
5063
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5064
|
+
property :environment_variable, as: 'environmentVariable', class: Google::Apis::SecuritycenterV1beta1::SecretEnvironmentVariable, decorator: Google::Apis::SecuritycenterV1beta1::SecretEnvironmentVariable::Representation
|
|
5065
|
+
|
|
5066
|
+
property :file_path, as: 'filePath', class: Google::Apis::SecuritycenterV1beta1::SecretFilePath, decorator: Google::Apis::SecuritycenterV1beta1::SecretFilePath::Representation
|
|
5067
|
+
|
|
5068
|
+
property :status, as: 'status', class: Google::Apis::SecuritycenterV1beta1::SecretStatus, decorator: Google::Apis::SecuritycenterV1beta1::SecretStatus::Representation
|
|
5069
|
+
|
|
5070
|
+
property :type, as: 'type'
|
|
5071
|
+
end
|
|
5072
|
+
end
|
|
5073
|
+
|
|
5074
|
+
class SecretEnvironmentVariable
|
|
5075
|
+
# @private
|
|
5076
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5077
|
+
property :key, as: 'key'
|
|
5078
|
+
end
|
|
5079
|
+
end
|
|
5080
|
+
|
|
5081
|
+
class SecretFilePath
|
|
5082
|
+
# @private
|
|
5083
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5084
|
+
property :path, as: 'path'
|
|
5085
|
+
end
|
|
5086
|
+
end
|
|
5087
|
+
|
|
5088
|
+
class SecretStatus
|
|
5089
|
+
# @private
|
|
5090
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5091
|
+
property :last_updated_time, as: 'lastUpdatedTime'
|
|
5092
|
+
property :validity, as: 'validity'
|
|
5093
|
+
end
|
|
5094
|
+
end
|
|
5095
|
+
|
|
4908
5096
|
class SecurityBulletin
|
|
4909
5097
|
# @private
|
|
4910
5098
|
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.101.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.101.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:
|