google-apis-securitycenter_v1 0.59.0 → 0.61.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: 543c3bbdfe4e218b457fa44f0d80ee9e7e3c9419f46e5ad5563401ce7e6cc4c8
|
4
|
+
data.tar.gz: 6102b4721fe352ba3a41034fb871e066e0b8a35252b66f3534c6ed6d97340dca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24ee62df2bdc0a418a075e28de5f7e574636413ab789e345bf5202f7fe80923c640debbc1f30f63bb2c7d2b6f29b7573f868fb8d9083fe2b814eab4e051332d4
|
7
|
+
data.tar.gz: c8d76565c07afc88ed6a46ffc9054d08b728fbfc82599258f850c2470cf6e64942d8a845f0c03aa82685333f98c1deddb53d482c2767699317802d4a338e2e3b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1
|
2
2
|
|
3
|
+
### v0.61.0 (2023-07-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230713
|
6
|
+
|
7
|
+
### v0.60.0 (2023-07-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230706
|
10
|
+
|
3
11
|
### v0.59.0 (2023-06-11)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230601
|
@@ -665,6 +665,11 @@ module Google
|
|
665
665
|
class Container
|
666
666
|
include Google::Apis::Core::Hashable
|
667
667
|
|
668
|
+
# The time that the container was created.
|
669
|
+
# Corresponds to the JSON property `createTime`
|
670
|
+
# @return [String]
|
671
|
+
attr_accessor :create_time
|
672
|
+
|
668
673
|
# Optional container image ID, if provided by the container runtime. Uniquely
|
669
674
|
# identifies the container image launched using a container image digest.
|
670
675
|
# Corresponds to the JSON property `imageId`
|
@@ -693,6 +698,7 @@ module Google
|
|
693
698
|
|
694
699
|
# Update properties of this object
|
695
700
|
def update!(**args)
|
701
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
696
702
|
@image_id = args[:image_id] if args.key?(:image_id)
|
697
703
|
@labels = args[:labels] if args.key?(:labels)
|
698
704
|
@name = args[:name] if args.key?(:name)
|
@@ -823,10 +829,7 @@ module Google
|
|
823
829
|
# might not have the [full resource name](https://google.aip.dev/122#full-
|
824
830
|
# resource-names) populated because these resource types, such as Cloud SQL
|
825
831
|
# databases, are not yet supported by Cloud Asset Inventory. In these cases only
|
826
|
-
# the display name is provided.
|
827
|
-
# resource name](https://google.aip.dev/122#full-resource-names) populated
|
828
|
-
# because these resource types are not yet supported by Cloud Asset Inventory (e.
|
829
|
-
# g. Cloud SQL databases). In these cases only the display name will be provided.
|
832
|
+
# the display name is provided.
|
830
833
|
class Database
|
831
834
|
include Google::Apis::Core::Hashable
|
832
835
|
|
@@ -841,9 +844,12 @@ module Google
|
|
841
844
|
# @return [Array<String>]
|
842
845
|
attr_accessor :grantees
|
843
846
|
|
844
|
-
#
|
845
|
-
#
|
846
|
-
# Inventory.
|
847
|
+
# Some database resources may not have the [full resource name](https://google.
|
848
|
+
# aip.dev/122#full-resource-names) populated because these resource types are
|
849
|
+
# not yet supported by Cloud Asset Inventory (e.g. Cloud SQL databases). In
|
850
|
+
# these cases only the display name will be provided. The [full resource name](
|
851
|
+
# https://google.aip.dev/122#full-resource-names) of the database that the user
|
852
|
+
# connected to, if it is supported by Cloud Asset Inventory.
|
847
853
|
# Corresponds to the JSON property `name`
|
848
854
|
# @return [String]
|
849
855
|
attr_accessor :name
|
@@ -859,6 +865,12 @@ module Google
|
|
859
865
|
# @return [String]
|
860
866
|
attr_accessor :user_name
|
861
867
|
|
868
|
+
# The version of the database, for example, POSTGRES_14. See [the complete list](
|
869
|
+
# https://cloud.google.com/sql/docs/mysql/admin-api/rest/v1/SqlDatabaseVersion).
|
870
|
+
# Corresponds to the JSON property `version`
|
871
|
+
# @return [String]
|
872
|
+
attr_accessor :version
|
873
|
+
|
862
874
|
def initialize(**args)
|
863
875
|
update!(**args)
|
864
876
|
end
|
@@ -870,6 +882,7 @@ module Google
|
|
870
882
|
@name = args[:name] if args.key?(:name)
|
871
883
|
@query = args[:query] if args.key?(:query)
|
872
884
|
@user_name = args[:user_name] if args.key?(:user_name)
|
885
|
+
@version = args[:version] if args.key?(:version)
|
873
886
|
end
|
874
887
|
end
|
875
888
|
|
@@ -1186,10 +1199,7 @@ module Google
|
|
1186
1199
|
# might not have the [full resource name](https://google.aip.dev/122#full-
|
1187
1200
|
# resource-names) populated because these resource types, such as Cloud SQL
|
1188
1201
|
# databases, are not yet supported by Cloud Asset Inventory. In these cases only
|
1189
|
-
# the display name is provided.
|
1190
|
-
# resource name](https://google.aip.dev/122#full-resource-names) populated
|
1191
|
-
# because these resource types are not yet supported by Cloud Asset Inventory (e.
|
1192
|
-
# g. Cloud SQL databases). In these cases only the display name will be provided.
|
1202
|
+
# the display name is provided.
|
1193
1203
|
# Corresponds to the JSON property `database`
|
1194
1204
|
# @return [Google::Apis::SecuritycenterV1::Database]
|
1195
1205
|
attr_accessor :database
|
@@ -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.61.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230713"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -789,6 +789,7 @@ module Google
|
|
789
789
|
class Container
|
790
790
|
# @private
|
791
791
|
class Representation < Google::Apis::Core::JsonRepresentation
|
792
|
+
property :create_time, as: 'createTime'
|
792
793
|
property :image_id, as: 'imageId'
|
793
794
|
collection :labels, as: 'labels', class: Google::Apis::SecuritycenterV1::Label, decorator: Google::Apis::SecuritycenterV1::Label::Representation
|
794
795
|
|
@@ -832,6 +833,7 @@ module Google
|
|
832
833
|
property :name, as: 'name'
|
833
834
|
property :query, as: 'query'
|
834
835
|
property :user_name, as: 'userName'
|
836
|
+
property :version, as: 'version'
|
835
837
|
end
|
836
838
|
end
|
837
839
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.61.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.61.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|