google-apis-domains_v1alpha2 0.45.0 → 0.46.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: bb3ad4aa1311186992878eda41fd1b718f5587ead23d68af884c2821ac48c02b
|
|
4
|
+
data.tar.gz: 39fd6f67f996c8ede6f9519395a87125cb2d12ae1064699b34b16ebe4cf6f535
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e8a5cc4091366da89395e52d8ccbe1de206141affde1ff29bd16b64f4b52427d20b0f968d2ee901e488914a5d57cf2230ed5bfd7a16e60a3264e40d4d6edf11
|
|
7
|
+
data.tar.gz: 2b36cecaec90fb30346afeb7c8943b1ebc61c62204c1c06469e507e6073fa5e21ce0005f6a0fb9677332344b87d35b4854c0a06b560c6c4943aea1409d658473
|
data/CHANGELOG.md
CHANGED
|
@@ -313,6 +313,13 @@ module Google
|
|
|
313
313
|
# @return [String]
|
|
314
314
|
attr_accessor :update_mask
|
|
315
315
|
|
|
316
|
+
# Optional. If set, validates the request without actually updating the
|
|
317
|
+
# management settings.
|
|
318
|
+
# Corresponds to the JSON property `validateOnly`
|
|
319
|
+
# @return [Boolean]
|
|
320
|
+
attr_accessor :validate_only
|
|
321
|
+
alias_method :validate_only?, :validate_only
|
|
322
|
+
|
|
316
323
|
def initialize(**args)
|
|
317
324
|
update!(**args)
|
|
318
325
|
end
|
|
@@ -321,6 +328,7 @@ module Google
|
|
|
321
328
|
def update!(**args)
|
|
322
329
|
@management_settings = args[:management_settings] if args.key?(:management_settings)
|
|
323
330
|
@update_mask = args[:update_mask] if args.key?(:update_mask)
|
|
331
|
+
@validate_only = args[:validate_only] if args.key?(:validate_only)
|
|
324
332
|
end
|
|
325
333
|
end
|
|
326
334
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DomainsV1alpha2
|
|
18
18
|
# Version of the google-apis-domains_v1alpha2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.46.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260427"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -425,6 +425,7 @@ module Google
|
|
|
425
425
|
property :management_settings, as: 'managementSettings', class: Google::Apis::DomainsV1alpha2::ManagementSettings, decorator: Google::Apis::DomainsV1alpha2::ManagementSettings::Representation
|
|
426
426
|
|
|
427
427
|
property :update_mask, as: 'updateMask'
|
|
428
|
+
property :validate_only, as: 'validateOnly'
|
|
428
429
|
end
|
|
429
430
|
end
|
|
430
431
|
|
|
@@ -82,15 +82,20 @@ module Google
|
|
|
82
82
|
end
|
|
83
83
|
|
|
84
84
|
# Lists information about the supported locations for this service. This method
|
|
85
|
-
#
|
|
86
|
-
#
|
|
87
|
-
#
|
|
88
|
-
#
|
|
85
|
+
# lists locations based on the resource scope provided in the
|
|
86
|
+
# ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
|
|
87
|
+
# the method lists the public locations available to all projects. * **Project-
|
|
88
|
+
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
89
|
+
# method lists locations visible to that specific project. This includes public,
|
|
90
|
+
# private, or other project-specific locations enabled for the project. For gRPC
|
|
91
|
+
# and client library implementations, the resource name is passed as the `name`
|
|
92
|
+
# field. For direct service calls, the resource name is incorporated into the
|
|
93
|
+
# request path based on the specific service implementation and version.
|
|
89
94
|
# @param [String] name
|
|
90
95
|
# The resource that owns the locations collection, if applicable.
|
|
91
96
|
# @param [Array<String>, String] extra_location_types
|
|
92
|
-
# Optional. Do not use this field
|
|
93
|
-
#
|
|
97
|
+
# Optional. Do not use this field unless explicitly documented otherwise. This
|
|
98
|
+
# is primarily for internal usage.
|
|
94
99
|
# @param [String] filter
|
|
95
100
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
96
101
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-domains_v1alpha2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.46.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-domains_v1alpha2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-domains_v1alpha2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-domains_v1alpha2/v0.46.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-domains_v1alpha2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|