google-apis-securitycenter_v1beta1 0.55.0 → 0.57.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: b69079f9340afd3edabc583305c97e29c10a3d0cde296a0868add992f0c967ec
|
4
|
+
data.tar.gz: 392e0483be4e8038da6380f33a7f6789ebc45d6458a4c780102aa52561b5e800
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc4567c86cb19eb19adab5c761ef03dda0949172e1833a3d6402caf221ee680b1ad7c5442654fb60aff9370622da88244f86d60764c5583db74ea148badb23f5
|
7
|
+
data.tar.gz: a696a3e7a530ccbed8c19d9b3b3bc3231146b4f98ea100ec9716993511ff8ff69cd64b92cbc3396b8d4eecf35464470b0ab6f80f2315e96a02f34d5821aee00a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta1
|
2
2
|
|
3
|
+
### v0.57.0 (2023-07-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230713
|
6
|
+
|
7
|
+
### v0.56.0 (2023-07-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230706
|
10
|
+
|
3
11
|
### v0.55.0 (2023-06-11)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230601
|
@@ -619,6 +619,11 @@ module Google
|
|
619
619
|
class Container
|
620
620
|
include Google::Apis::Core::Hashable
|
621
621
|
|
622
|
+
# The time that the container was created.
|
623
|
+
# Corresponds to the JSON property `createTime`
|
624
|
+
# @return [String]
|
625
|
+
attr_accessor :create_time
|
626
|
+
|
622
627
|
# Optional container image ID, if provided by the container runtime. Uniquely
|
623
628
|
# identifies the container image launched using a container image digest.
|
624
629
|
# Corresponds to the JSON property `imageId`
|
@@ -647,6 +652,7 @@ module Google
|
|
647
652
|
|
648
653
|
# Update properties of this object
|
649
654
|
def update!(**args)
|
655
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
650
656
|
@image_id = args[:image_id] if args.key?(:image_id)
|
651
657
|
@labels = args[:labels] if args.key?(:labels)
|
652
658
|
@name = args[:name] if args.key?(:name)
|
@@ -777,10 +783,7 @@ module Google
|
|
777
783
|
# might not have the [full resource name](https://google.aip.dev/122#full-
|
778
784
|
# resource-names) populated because these resource types, such as Cloud SQL
|
779
785
|
# databases, are not yet supported by Cloud Asset Inventory. In these cases only
|
780
|
-
# the display name is provided.
|
781
|
-
# resource name](https://google.aip.dev/122#full-resource-names) populated
|
782
|
-
# because these resource types are not yet supported by Cloud Asset Inventory (e.
|
783
|
-
# g. Cloud SQL databases). In these cases only the display name will be provided.
|
786
|
+
# the display name is provided.
|
784
787
|
class Database
|
785
788
|
include Google::Apis::Core::Hashable
|
786
789
|
|
@@ -795,9 +798,12 @@ module Google
|
|
795
798
|
# @return [Array<String>]
|
796
799
|
attr_accessor :grantees
|
797
800
|
|
798
|
-
#
|
799
|
-
#
|
800
|
-
# Inventory.
|
801
|
+
# Some database resources may not have the [full resource name](https://google.
|
802
|
+
# aip.dev/122#full-resource-names) populated because these resource types are
|
803
|
+
# not yet supported by Cloud Asset Inventory (e.g. Cloud SQL databases). In
|
804
|
+
# these cases only the display name will be provided. The [full resource name](
|
805
|
+
# https://google.aip.dev/122#full-resource-names) of the database that the user
|
806
|
+
# connected to, if it is supported by Cloud Asset Inventory.
|
801
807
|
# Corresponds to the JSON property `name`
|
802
808
|
# @return [String]
|
803
809
|
attr_accessor :name
|
@@ -813,6 +819,12 @@ module Google
|
|
813
819
|
# @return [String]
|
814
820
|
attr_accessor :user_name
|
815
821
|
|
822
|
+
# The version of the database, for example, POSTGRES_14. See [the complete list](
|
823
|
+
# https://cloud.google.com/sql/docs/mysql/admin-api/rest/v1/SqlDatabaseVersion).
|
824
|
+
# Corresponds to the JSON property `version`
|
825
|
+
# @return [String]
|
826
|
+
attr_accessor :version
|
827
|
+
|
816
828
|
def initialize(**args)
|
817
829
|
update!(**args)
|
818
830
|
end
|
@@ -824,6 +836,7 @@ module Google
|
|
824
836
|
@name = args[:name] if args.key?(:name)
|
825
837
|
@query = args[:query] if args.key?(:query)
|
826
838
|
@user_name = args[:user_name] if args.key?(:user_name)
|
839
|
+
@version = args[:version] if args.key?(:version)
|
827
840
|
end
|
828
841
|
end
|
829
842
|
|
@@ -1140,10 +1153,7 @@ module Google
|
|
1140
1153
|
# might not have the [full resource name](https://google.aip.dev/122#full-
|
1141
1154
|
# resource-names) populated because these resource types, such as Cloud SQL
|
1142
1155
|
# databases, are not yet supported by Cloud Asset Inventory. In these cases only
|
1143
|
-
# the display name is provided.
|
1144
|
-
# resource name](https://google.aip.dev/122#full-resource-names) populated
|
1145
|
-
# because these resource types are not yet supported by Cloud Asset Inventory (e.
|
1146
|
-
# g. Cloud SQL databases). In these cases only the display name will be provided.
|
1156
|
+
# the display name is provided.
|
1147
1157
|
# Corresponds to the JSON property `database`
|
1148
1158
|
# @return [Google::Apis::SecuritycenterV1beta1::Database]
|
1149
1159
|
attr_accessor :database
|
@@ -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.57.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
|
@@ -723,6 +723,7 @@ module Google
|
|
723
723
|
class Container
|
724
724
|
# @private
|
725
725
|
class Representation < Google::Apis::Core::JsonRepresentation
|
726
|
+
property :create_time, as: 'createTime'
|
726
727
|
property :image_id, as: 'imageId'
|
727
728
|
collection :labels, as: 'labels', class: Google::Apis::SecuritycenterV1beta1::Label, decorator: Google::Apis::SecuritycenterV1beta1::Label::Representation
|
728
729
|
|
@@ -766,6 +767,7 @@ module Google
|
|
766
767
|
property :name, as: 'name'
|
767
768
|
property :query, as: 'query'
|
768
769
|
property :user_name, as: 'userName'
|
770
|
+
property :version, as: 'version'
|
769
771
|
end
|
770
772
|
end
|
771
773
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.57.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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.57.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|