google-apis-securitycenter_v1beta2 0.50.0 → 0.52.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: ce416010f3cf68ee6bd0b1dbb403243ac2410d59f674582ee335f144ce0ab8d5
|
4
|
+
data.tar.gz: 82f73e4ca4343d17a6fd2ebe023234c6bb17cdc94bd9daeeb0f6071e3ba77d35
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dfb34b189bfc3b2897cd5cd9d005b9bce771bf156b7fda78230ff69ba5415a2133b9b1e662bd99350e929e4fed16c73e6ad282e07ade1233801a04a167e4df9c
|
7
|
+
data.tar.gz: a3fba3dbf507202827622e0635cfa29870d63ea91fd5199b38597a5b88c09a10c86c0b56abbe74082ec63e773dd74eeca11c92f7f62334bb433e0251c941d18e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta2
|
2
2
|
|
3
|
+
### v0.52.0 (2023-07-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230713
|
6
|
+
|
7
|
+
### v0.51.0 (2023-07-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230706
|
10
|
+
|
3
11
|
### v0.50.0 (2023-06-11)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230601
|
@@ -399,6 +399,11 @@ module Google
|
|
399
399
|
class Container
|
400
400
|
include Google::Apis::Core::Hashable
|
401
401
|
|
402
|
+
# The time that the container was created.
|
403
|
+
# Corresponds to the JSON property `createTime`
|
404
|
+
# @return [String]
|
405
|
+
attr_accessor :create_time
|
406
|
+
|
402
407
|
# Optional container image ID, if provided by the container runtime. Uniquely
|
403
408
|
# identifies the container image launched using a container image digest.
|
404
409
|
# Corresponds to the JSON property `imageId`
|
@@ -427,6 +432,7 @@ module Google
|
|
427
432
|
|
428
433
|
# Update properties of this object
|
429
434
|
def update!(**args)
|
435
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
430
436
|
@image_id = args[:image_id] if args.key?(:image_id)
|
431
437
|
@labels = args[:labels] if args.key?(:labels)
|
432
438
|
@name = args[:name] if args.key?(:name)
|
@@ -609,10 +615,7 @@ module Google
|
|
609
615
|
# might not have the [full resource name](https://google.aip.dev/122#full-
|
610
616
|
# resource-names) populated because these resource types, such as Cloud SQL
|
611
617
|
# databases, are not yet supported by Cloud Asset Inventory. In these cases only
|
612
|
-
# the display name is provided.
|
613
|
-
# resource name](https://google.aip.dev/122#full-resource-names) populated
|
614
|
-
# because these resource types are not yet supported by Cloud Asset Inventory (e.
|
615
|
-
# g. Cloud SQL databases). In these cases only the display name will be provided.
|
618
|
+
# the display name is provided.
|
616
619
|
class Database
|
617
620
|
include Google::Apis::Core::Hashable
|
618
621
|
|
@@ -627,9 +630,12 @@ module Google
|
|
627
630
|
# @return [Array<String>]
|
628
631
|
attr_accessor :grantees
|
629
632
|
|
630
|
-
#
|
631
|
-
#
|
632
|
-
# Inventory.
|
633
|
+
# Some database resources may not have the [full resource name](https://google.
|
634
|
+
# aip.dev/122#full-resource-names) populated because these resource types are
|
635
|
+
# not yet supported by Cloud Asset Inventory (e.g. Cloud SQL databases). In
|
636
|
+
# these cases only the display name will be provided. The [full resource name](
|
637
|
+
# https://google.aip.dev/122#full-resource-names) of the database that the user
|
638
|
+
# connected to, if it is supported by Cloud Asset Inventory.
|
633
639
|
# Corresponds to the JSON property `name`
|
634
640
|
# @return [String]
|
635
641
|
attr_accessor :name
|
@@ -645,6 +651,12 @@ module Google
|
|
645
651
|
# @return [String]
|
646
652
|
attr_accessor :user_name
|
647
653
|
|
654
|
+
# The version of the database, for example, POSTGRES_14. See [the complete list](
|
655
|
+
# https://cloud.google.com/sql/docs/mysql/admin-api/rest/v1/SqlDatabaseVersion).
|
656
|
+
# Corresponds to the JSON property `version`
|
657
|
+
# @return [String]
|
658
|
+
attr_accessor :version
|
659
|
+
|
648
660
|
def initialize(**args)
|
649
661
|
update!(**args)
|
650
662
|
end
|
@@ -656,6 +668,7 @@ module Google
|
|
656
668
|
@name = args[:name] if args.key?(:name)
|
657
669
|
@query = args[:query] if args.key?(:query)
|
658
670
|
@user_name = args[:user_name] if args.key?(:user_name)
|
671
|
+
@version = args[:version] if args.key?(:version)
|
659
672
|
end
|
660
673
|
end
|
661
674
|
|
@@ -1029,10 +1042,7 @@ module Google
|
|
1029
1042
|
# might not have the [full resource name](https://google.aip.dev/122#full-
|
1030
1043
|
# resource-names) populated because these resource types, such as Cloud SQL
|
1031
1044
|
# databases, are not yet supported by Cloud Asset Inventory. In these cases only
|
1032
|
-
# the display name is provided.
|
1033
|
-
# resource name](https://google.aip.dev/122#full-resource-names) populated
|
1034
|
-
# because these resource types are not yet supported by Cloud Asset Inventory (e.
|
1035
|
-
# g. Cloud SQL databases). In these cases only the display name will be provided.
|
1045
|
+
# the display name is provided.
|
1036
1046
|
# Corresponds to the JSON property `database`
|
1037
1047
|
# @return [Google::Apis::SecuritycenterV1beta2::Database]
|
1038
1048
|
attr_accessor :database
|
@@ -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.52.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
|
@@ -550,6 +550,7 @@ module Google
|
|
550
550
|
class Container
|
551
551
|
# @private
|
552
552
|
class Representation < Google::Apis::Core::JsonRepresentation
|
553
|
+
property :create_time, as: 'createTime'
|
553
554
|
property :image_id, as: 'imageId'
|
554
555
|
collection :labels, as: 'labels', class: Google::Apis::SecuritycenterV1beta2::Label, decorator: Google::Apis::SecuritycenterV1beta2::Label::Representation
|
555
556
|
|
@@ -605,6 +606,7 @@ module Google
|
|
605
606
|
property :name, as: 'name'
|
606
607
|
property :query, as: 'query'
|
607
608
|
property :user_name, as: 'userName'
|
609
|
+
property :version, as: 'version'
|
608
610
|
end
|
609
611
|
end
|
610
612
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.52.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_v1beta2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.52.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|