google-apis-cloudasset_v1 0.2.0 → 0.3.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: 7f1acf6282fa984e011f3ac787cddfac7095488391d249307c2f5ec0d5a6d9e6
|
|
4
|
+
data.tar.gz: 141f49ede27cea29d82a4e6eda0fbed050a3049db8bb731f04653ee6d30eb244
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e8bcce462c34522145b7735b0c9608ded6e57935692ba0a36011b6323153e1b1ebb8311781ae8a43e4b6c5b728dcdd7ea342ac3feb44b73fc57a292f218d1a3c
|
|
7
|
+
data.tar.gz: 871835974e3ff8856929512bf7b3cbf9f418955dca3bd3b17860425e07b5d0924fd74ec17b4acd8d813dd12db8134571f13c20f6fe038b44d5fec70ff5aa88d0
|
data/CHANGELOG.md
CHANGED
|
@@ -3068,8 +3068,8 @@ module Google
|
|
|
3068
3068
|
# The folder(s) that this resource belongs to, in the form of folders/`
|
|
3069
3069
|
# FOLDER_NUMBER`. This field is available when the resource belongs to one or
|
|
3070
3070
|
# more folders. To search against `folders`: * use a field query. Example: `
|
|
3071
|
-
# folders:(123 OR 456)` *
|
|
3072
|
-
# search request.
|
|
3071
|
+
# folders:(123 OR 456)` * use a free text query. Example: `123` * specify the `
|
|
3072
|
+
# scope` field as this folder in your search request.
|
|
3073
3073
|
# Corresponds to the JSON property `folders`
|
|
3074
3074
|
# @return [Array<String>]
|
|
3075
3075
|
attr_accessor :folders
|
|
@@ -3128,16 +3128,30 @@ module Google
|
|
|
3128
3128
|
# The organization that this resource belongs to, in the form of organizations/`
|
|
3129
3129
|
# ORGANIZATION_NUMBER`. This field is available when the resource belongs to an
|
|
3130
3130
|
# organization. To search against `organization`: * use a field query. Example: `
|
|
3131
|
-
# organization:123` *
|
|
3132
|
-
# search request.
|
|
3131
|
+
# organization:123` * use a free text query. Example: `123` * specify the `scope`
|
|
3132
|
+
# field as this organization in your search request.
|
|
3133
3133
|
# Corresponds to the JSON property `organization`
|
|
3134
3134
|
# @return [String]
|
|
3135
3135
|
attr_accessor :organization
|
|
3136
3136
|
|
|
3137
|
+
# The type of this resource's immediate parent, if there is one. To search
|
|
3138
|
+
# against the `parent_asset_type`: * use a field query. Example: `
|
|
3139
|
+
# parentAssetType:"cloudresourcemanager.googleapis.com/Project"` * use a free
|
|
3140
|
+
# text query. Example: `cloudresourcemanager.googleapis.com/Project`
|
|
3141
|
+
# Corresponds to the JSON property `parentAssetType`
|
|
3142
|
+
# @return [String]
|
|
3143
|
+
attr_accessor :parent_asset_type
|
|
3144
|
+
|
|
3145
|
+
# The full resource name of this resource's parent, if it has one.
|
|
3146
|
+
# Corresponds to the JSON property `parentFullResourceName`
|
|
3147
|
+
# @return [String]
|
|
3148
|
+
attr_accessor :parent_full_resource_name
|
|
3149
|
+
|
|
3137
3150
|
# The project that this resource belongs to, in the form of projects/`
|
|
3138
3151
|
# PROJECT_NUMBER`. This field is available when the resource belongs to a
|
|
3139
3152
|
# project. To search against `project`: * use a field query. Example: `project:
|
|
3140
|
-
# 12345` *
|
|
3153
|
+
# 12345` * use a free text query. Example: `12345` * specify the `scope` field
|
|
3154
|
+
# as this project in your search request.
|
|
3141
3155
|
# Corresponds to the JSON property `project`
|
|
3142
3156
|
# @return [String]
|
|
3143
3157
|
attr_accessor :project
|
|
@@ -3186,6 +3200,8 @@ module Google
|
|
|
3186
3200
|
@name = args[:name] if args.key?(:name)
|
|
3187
3201
|
@network_tags = args[:network_tags] if args.key?(:network_tags)
|
|
3188
3202
|
@organization = args[:organization] if args.key?(:organization)
|
|
3203
|
+
@parent_asset_type = args[:parent_asset_type] if args.key?(:parent_asset_type)
|
|
3204
|
+
@parent_full_resource_name = args[:parent_full_resource_name] if args.key?(:parent_full_resource_name)
|
|
3189
3205
|
@project = args[:project] if args.key?(:project)
|
|
3190
3206
|
@state = args[:state] if args.key?(:state)
|
|
3191
3207
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
@@ -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.3.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.1.2"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210212"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1212,6 +1212,8 @@ module Google
|
|
|
1212
1212
|
property :name, as: 'name'
|
|
1213
1213
|
collection :network_tags, as: 'networkTags'
|
|
1214
1214
|
property :organization, as: 'organization'
|
|
1215
|
+
property :parent_asset_type, as: 'parentAssetType'
|
|
1216
|
+
property :parent_full_resource_name, as: 'parentFullResourceName'
|
|
1215
1217
|
property :project, as: 'project'
|
|
1216
1218
|
property :state, as: 'state'
|
|
1217
1219
|
property :update_time, as: 'updateTime'
|
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.3.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: 2021-02-
|
|
11
|
+
date: 2021-02-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -52,7 +52,7 @@ licenses:
|
|
|
52
52
|
metadata:
|
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudasset_v1/CHANGELOG.md
|
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1/v0.
|
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1/v0.3.0
|
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudasset_v1
|
|
57
57
|
post_install_message:
|
|
58
58
|
rdoc_options: []
|