google-apis-migrationcenter_v1alpha1 0.19.0 → 0.20.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/migrationcenter_v1alpha1/classes.rb +27 -0
- data/lib/google/apis/migrationcenter_v1alpha1/gem_version.rb +2 -2
- data/lib/google/apis/migrationcenter_v1alpha1/representations.rb +4 -0
- data/lib/google/apis/migrationcenter_v1alpha1/service.rb +5 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c07e961679c22537029e88bc7a5c7600e03696e173e53a09b6fafc71e42249ae
|
4
|
+
data.tar.gz: 181f20c34015c7a419e1c65d2c1b21be87ce3be613fb3eb0758df69843c05f0e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 312049fc7175f0c758ced26747ddde0eaf696ad5539538e0f6ae5cd8d3114183ef646052fcff8b75572eec317ca3508326fd22c770f79b01785fca302b43536d
|
7
|
+
data.tar.gz: 79e6f5661dcbbf2079d8ccbe29d0cb67c13e7dd26fd5bea5a7a23d3bc4dd30ea08ac7ca7194c1b8de2151fdd4d7d8e7df1f8f6063a7e8a276fe0db4ba6b0dad1
|
data/CHANGELOG.md
CHANGED
@@ -80,6 +80,13 @@ module Google
|
|
80
80
|
# @return [String]
|
81
81
|
attr_accessor :filter
|
82
82
|
|
83
|
+
# Optional. When this value is set to 'true' the response will include all
|
84
|
+
# assets, including those that are hidden.
|
85
|
+
# Corresponds to the JSON property `showHidden`
|
86
|
+
# @return [Boolean]
|
87
|
+
attr_accessor :show_hidden
|
88
|
+
alias_method :show_hidden?, :show_hidden
|
89
|
+
|
83
90
|
def initialize(**args)
|
84
91
|
update!(**args)
|
85
92
|
end
|
@@ -88,6 +95,7 @@ module Google
|
|
88
95
|
def update!(**args)
|
89
96
|
@aggregations = args[:aggregations] if args.key?(:aggregations)
|
90
97
|
@filter = args[:filter] if args.key?(:filter)
|
98
|
+
@show_hidden = args[:show_hidden] if args.key?(:show_hidden)
|
91
99
|
end
|
92
100
|
end
|
93
101
|
|
@@ -393,6 +401,22 @@ module Google
|
|
393
401
|
# @return [String]
|
394
402
|
attr_accessor :create_time
|
395
403
|
|
404
|
+
# Optional. Indicates if the asset is hidden.
|
405
|
+
# Corresponds to the JSON property `hidden`
|
406
|
+
# @return [Boolean]
|
407
|
+
attr_accessor :hidden
|
408
|
+
alias_method :hidden?, :hidden
|
409
|
+
|
410
|
+
# Optional. An optional reason for marking this asset as hidden.
|
411
|
+
# Corresponds to the JSON property `hideReason`
|
412
|
+
# @return [String]
|
413
|
+
attr_accessor :hide_reason
|
414
|
+
|
415
|
+
# Output only. The timestamp when the asset was marked as hidden.
|
416
|
+
# Corresponds to the JSON property `hideTime`
|
417
|
+
# @return [String]
|
418
|
+
attr_accessor :hide_time
|
419
|
+
|
396
420
|
# Message containing insights list.
|
397
421
|
# Corresponds to the JSON property `insightList`
|
398
422
|
# @return [Google::Apis::MigrationcenterV1alpha1::InsightList]
|
@@ -437,6 +461,9 @@ module Google
|
|
437
461
|
@assigned_groups = args[:assigned_groups] if args.key?(:assigned_groups)
|
438
462
|
@attributes = args[:attributes] if args.key?(:attributes)
|
439
463
|
@create_time = args[:create_time] if args.key?(:create_time)
|
464
|
+
@hidden = args[:hidden] if args.key?(:hidden)
|
465
|
+
@hide_reason = args[:hide_reason] if args.key?(:hide_reason)
|
466
|
+
@hide_time = args[:hide_time] if args.key?(:hide_time)
|
440
467
|
@insight_list = args[:insight_list] if args.key?(:insight_list)
|
441
468
|
@labels = args[:labels] if args.key?(:labels)
|
442
469
|
@name = args[:name] if args.key?(:name)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MigrationcenterV1alpha1
|
18
18
|
# Version of the google-apis-migrationcenter_v1alpha1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.20.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 = "20231027"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -986,6 +986,7 @@ module Google
|
|
986
986
|
collection :aggregations, as: 'aggregations', class: Google::Apis::MigrationcenterV1alpha1::Aggregation, decorator: Google::Apis::MigrationcenterV1alpha1::Aggregation::Representation
|
987
987
|
|
988
988
|
property :filter, as: 'filter'
|
989
|
+
property :show_hidden, as: 'showHidden'
|
989
990
|
end
|
990
991
|
end
|
991
992
|
|
@@ -1096,6 +1097,9 @@ module Google
|
|
1096
1097
|
collection :assigned_groups, as: 'assignedGroups'
|
1097
1098
|
hash :attributes, as: 'attributes'
|
1098
1099
|
property :create_time, as: 'createTime'
|
1100
|
+
property :hidden, as: 'hidden'
|
1101
|
+
property :hide_reason, as: 'hideReason'
|
1102
|
+
property :hide_time, as: 'hideTime'
|
1099
1103
|
property :insight_list, as: 'insightList', class: Google::Apis::MigrationcenterV1alpha1::InsightList, decorator: Google::Apis::MigrationcenterV1alpha1::InsightList::Representation
|
1100
1104
|
|
1101
1105
|
hash :labels, as: 'labels'
|
@@ -391,6 +391,9 @@ module Google
|
|
391
391
|
# unspecified, server will pick an appropriate default.
|
392
392
|
# @param [String] page_token
|
393
393
|
# A token identifying a page of results the server should return.
|
394
|
+
# @param [Boolean] show_hidden
|
395
|
+
# Optional. When this value is set to 'true' the response will include all
|
396
|
+
# assets, including those that are hidden.
|
394
397
|
# @param [String] view
|
395
398
|
# View of the assets. Defaults to BASIC.
|
396
399
|
# @param [String] fields
|
@@ -410,7 +413,7 @@ module Google
|
|
410
413
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
411
414
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
412
415
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
413
|
-
def list_project_location_assets(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
416
|
+
def list_project_location_assets(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, show_hidden: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
414
417
|
command = make_simple_command(:get, 'v1alpha1/{+parent}/assets', options)
|
415
418
|
command.response_representation = Google::Apis::MigrationcenterV1alpha1::ListAssetsResponse::Representation
|
416
419
|
command.response_class = Google::Apis::MigrationcenterV1alpha1::ListAssetsResponse
|
@@ -419,6 +422,7 @@ module Google
|
|
419
422
|
command.query['orderBy'] = order_by unless order_by.nil?
|
420
423
|
command.query['pageSize'] = page_size unless page_size.nil?
|
421
424
|
command.query['pageToken'] = page_token unless page_token.nil?
|
425
|
+
command.query['showHidden'] = show_hidden unless show_hidden.nil?
|
422
426
|
command.query['view'] = view unless view.nil?
|
423
427
|
command.query['fields'] = fields unless fields.nil?
|
424
428
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-migrationcenter_v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.20.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-11-05 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-migrationcenter_v1alpha1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.20.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-migrationcenter_v1alpha1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|