google-apis-migrationcenter_v1alpha1 0.19.0 → 0.21.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/migrationcenter_v1alpha1/classes.rb +33 -0
- data/lib/google/apis/migrationcenter_v1alpha1/gem_version.rb +2 -2
- data/lib/google/apis/migrationcenter_v1alpha1/representations.rb +5 -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: fd1aed842af1c173cdc60d2e4e75212af204456b2d79833eb1aac36c30a66ccf
|
4
|
+
data.tar.gz: 827a36a63edde740f22e8b94b71d71eaf59ccfb8295f2fccb1802773d6b6d421
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0e46eb4279bedfa82d0220eb9c8c2bf95a220b18b18fe942b46693c18bff46f68aa0e943b75797ae09c07ea1aa65d20b603de4e0a268d7a10667bf613f6a36e
|
7
|
+
data.tar.gz: a3af7ea92ad109b8a635cfe60fc87bec0c444a75c551600b6a563dba9471628dcfe7a0b3a6393c362f58049c6673d7a50f8013f7616493cb6b6e5538d1f9c2e4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-migrationcenter_v1alpha1
|
2
2
|
|
3
|
+
### v0.21.0 (2023-12-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231208
|
6
|
+
|
7
|
+
### v0.20.0 (2023-11-05)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231027
|
10
|
+
|
3
11
|
### v0.19.0 (2023-10-22)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20231013
|
@@ -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)
|
@@ -1831,6 +1858,11 @@ module Google
|
|
1831
1858
|
class GuestInstalledApplication
|
1832
1859
|
include Google::Apis::Core::Hashable
|
1833
1860
|
|
1861
|
+
# License strings associated with the installed application.
|
1862
|
+
# Corresponds to the JSON property `licenses`
|
1863
|
+
# @return [Array<String>]
|
1864
|
+
attr_accessor :licenses
|
1865
|
+
|
1834
1866
|
# Installed application name.
|
1835
1867
|
# Corresponds to the JSON property `name`
|
1836
1868
|
# @return [String]
|
@@ -1862,6 +1894,7 @@ module Google
|
|
1862
1894
|
|
1863
1895
|
# Update properties of this object
|
1864
1896
|
def update!(**args)
|
1897
|
+
@licenses = args[:licenses] if args.key?(:licenses)
|
1865
1898
|
@name = args[:name] if args.key?(:name)
|
1866
1899
|
@path = args[:path] if args.key?(:path)
|
1867
1900
|
@time = args[:time] if args.key?(:time)
|
@@ -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.21.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 = "20231208"
|
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'
|
@@ -1534,6 +1538,7 @@ module Google
|
|
1534
1538
|
class GuestInstalledApplication
|
1535
1539
|
# @private
|
1536
1540
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1541
|
+
collection :licenses, as: 'licenses'
|
1537
1542
|
property :name, as: 'name'
|
1538
1543
|
property :path, as: 'path'
|
1539
1544
|
property :time, as: 'time'
|
@@ -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.21.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-12-17 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.21.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: []
|