google-apis-cloudasset_v1 0.26.0 → 0.27.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: 07face41ede5d125a3ace22750bf2cec71f77340195774ecf5e14525a616d7b4
|
|
4
|
+
data.tar.gz: 054e3870c2ce695576273da3e85972165ab1c114ae6b31d61b5a84fa2d1c34f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5159a1c22b39d86d61fb1e7110aa8a8b832315ba12a87bae41b6daf327e3e77d11d3615bd2837d5591edb0cdc2756f7dfffb3133402bfe073b4b1300d3b3128
|
|
7
|
+
data.tar.gz: c5c663ffd9980e70c78e5b94f8175fb0b1184a9dd82a4471ef2eb5392e2ec9756a6eb6d953b2d5822dc61621cb152f171211fa94c9b29df31eb96d8ee27643b7
|
data/CHANGELOG.md
CHANGED
|
@@ -664,10 +664,10 @@ module Google
|
|
|
664
664
|
# day and time zone are either specified elsewhere or are insignificant. The
|
|
665
665
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
|
666
666
|
# following: * A full date, with non-zero year, month, and day values * A month
|
|
667
|
-
# and day
|
|
668
|
-
#
|
|
669
|
-
#
|
|
670
|
-
# google.protobuf.Timestamp
|
|
667
|
+
# and day, with a zero year (e.g., an anniversary) * A year on its own, with a
|
|
668
|
+
# zero month and a zero day * A year and month, with a zero day (e.g., a credit
|
|
669
|
+
# card expiration date) Related types: * google.type.TimeOfDay * google.type.
|
|
670
|
+
# DateTime * google.protobuf.Timestamp
|
|
671
671
|
class Date
|
|
672
672
|
include Google::Apis::Core::Hashable
|
|
673
673
|
|
|
@@ -877,8 +877,8 @@ module Google
|
|
|
877
877
|
# either or both of asset_names and asset_types. Only asset updates matching
|
|
878
878
|
# specified asset_names or asset_types are exported to the feed. Example: `//
|
|
879
879
|
# compute.googleapis.com/projects/my_project_123/zones/zone1/instances/instance1`
|
|
880
|
-
# .
|
|
881
|
-
#
|
|
880
|
+
# . For a list of the full names for supported asset types, see [Resource name
|
|
881
|
+
# format](/asset-inventory/docs/resource-name-format).
|
|
882
882
|
# Corresponds to the JSON property `assetNames`
|
|
883
883
|
# @return [Array<String>]
|
|
884
884
|
attr_accessor :asset_names
|
|
@@ -886,8 +886,8 @@ module Google
|
|
|
886
886
|
# A list of types of the assets to receive updates. You must specify either or
|
|
887
887
|
# both of asset_names and asset_types. Only asset updates matching specified
|
|
888
888
|
# asset_names or asset_types are exported to the feed. Example: `"compute.
|
|
889
|
-
# googleapis.com/Disk"`
|
|
890
|
-
# inventory/docs/supported-asset-types)
|
|
889
|
+
# googleapis.com/Disk"` For a list of all supported asset types, see [Supported
|
|
890
|
+
# asset types](/asset-inventory/docs/supported-asset-types).
|
|
891
891
|
# Corresponds to the JSON property `assetTypes`
|
|
892
892
|
# @return [Array<String>]
|
|
893
893
|
attr_accessor :asset_types
|
|
@@ -4681,10 +4681,10 @@ module Google
|
|
|
4681
4681
|
# day and time zone are either specified elsewhere or are insignificant. The
|
|
4682
4682
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
|
4683
4683
|
# following: * A full date, with non-zero year, month, and day values * A month
|
|
4684
|
-
# and day
|
|
4685
|
-
#
|
|
4686
|
-
#
|
|
4687
|
-
# google.protobuf.Timestamp
|
|
4684
|
+
# and day, with a zero year (e.g., an anniversary) * A year on its own, with a
|
|
4685
|
+
# zero month and a zero day * A year and month, with a zero day (e.g., a credit
|
|
4686
|
+
# card expiration date) Related types: * google.type.TimeOfDay * google.type.
|
|
4687
|
+
# DateTime * google.protobuf.Timestamp
|
|
4688
4688
|
# Corresponds to the JSON property `installDate`
|
|
4689
4689
|
# @return [Google::Apis::CloudassetV1::Date]
|
|
4690
4690
|
attr_accessor :install_date
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CloudassetV1
|
|
18
18
|
# Version of the google-apis-cloudasset_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.27.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220131"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -52,11 +52,11 @@ module Google
|
|
|
52
52
|
# Lists assets with time and resource types and returns paged results in
|
|
53
53
|
# response.
|
|
54
54
|
# @param [String] parent
|
|
55
|
-
# Required. Name of the organization or project the assets belong to.
|
|
56
|
-
# organizations/[organization-number]" (such as "organizations/123"), "
|
|
57
|
-
# project-id]" (such as "projects/my-project-id"), "projects/[project-
|
|
58
|
-
# such as "projects/12345"), or "folders/[folder-number]" (such as "
|
|
59
|
-
# 12345").
|
|
55
|
+
# Required. Name of the organization, folder, or project the assets belong to.
|
|
56
|
+
# Format: "organizations/[organization-number]" (such as "organizations/123"), "
|
|
57
|
+
# projects/[project-id]" (such as "projects/my-project-id"), "projects/[project-
|
|
58
|
+
# number]" (such as "projects/12345"), or "folders/[folder-number]" (such as "
|
|
59
|
+
# folders/12345").
|
|
60
60
|
# @param [Array<String>, String] asset_types
|
|
61
61
|
# A list of asset types to take a snapshot for. For example: "compute.googleapis.
|
|
62
62
|
# com/Disk". Regular expression is also supported. For example: * "compute.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudasset_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.27.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: 2022-
|
|
11
|
+
date: 2022-02-07 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-cloudasset_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1/v0.27.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|