google-apis-managedidentities_v1 0.36.0 → 0.38.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: ece7d15b488631d57277a50cc1284342ef4a8462f85b235ccca000c9d65ba3cc
4
- data.tar.gz: 65c7bf2196b18cc82c0a8aeb59f007c2725921cdaaa3551408b9bdf6db5e71ca
3
+ metadata.gz: e19d8354badf48a05160fd4d9f4c572dcf351ecdce2f4580e748319925b2dcb6
4
+ data.tar.gz: b33f910c1227583e223baacb70a1278d2f800552dbd22bd09df474001464c015
5
5
  SHA512:
6
- metadata.gz: 250867bf349ebabcb74d2ac637d852512337a390f1a11f980b91e187319a542ae7a52eb7cb9aed304e756df6cb400192d09bb97cfbfa1d15044a8d53d5f47f8d
7
- data.tar.gz: 6db76cbfe3dc4e95eeb2052c2a12dc40e2b4e308e7271f5f63b2a3f46b644cb026838864b0af1f02c93a7f812aada9987f5a2954009df5d21a1ce3324a9ec028
6
+ metadata.gz: cb860b8349d24481ef23593554af6533d2c72286de28dfb2c68eb7f49cc726aaf45c8df2aff30809f85a7ff3d7071c3c1aba1658a02ec0d6041c4572eeed3c14
7
+ data.tar.gz: 40add5389ccf6f50ffa52e7db6481b27d05ceca7e19447e6eacaef871779f71f457016afdab5e247ea07c9ce4a8f38337c1c8a9924bd99c9072373ba5d74e5f4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-managedidentities_v1
2
2
 
3
+ ### v0.38.0 (2025-02-26)
4
+
5
+ * Regenerated from discovery document revision 20250116
6
+ * Regenerated using generator version 0.16.0
7
+
8
+ ### v0.37.0 (2024-06-09)
9
+
10
+ * Regenerated from discovery document revision 20240530
11
+
3
12
  ### v0.36.0 (2024-05-19)
4
13
 
5
14
  * Regenerated using generator version 0.15.0
@@ -182,7 +182,10 @@ module Google
182
182
  attr_accessor :members
183
183
 
184
184
  # Role that is assigned to the list of `members`, or principals. For example, `
185
- # roles/viewer`, `roles/editor`, or `roles/owner`.
185
+ # roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM
186
+ # roles and permissions, see the [IAM documentation](https://cloud.google.com/
187
+ # iam/docs/roles-overview). For a list of the available pre-defined roles, see [
188
+ # here](https://cloud.google.com/iam/docs/understanding-roles).
186
189
  # Corresponds to the JSON property `role`
187
190
  # @return [String]
188
191
  attr_accessor :role
@@ -492,9 +495,10 @@ module Google
492
495
  # @return [Hash<String,String>]
493
496
  attr_accessor :labels
494
497
 
495
- # Required. Locations where domain needs to be provisioned. regions e.g. us-
496
- # west1 or us-east4 Service supports up to 4 locations at once. Each location
497
- # will use a /26 block.
498
+ # Required. Locations where domain needs to be provisioned. The locations can be
499
+ # specified according to https://cloud.google.com/compute/docs/regions-zones,
500
+ # such as `us-west1` or `us-east4`. Each domain supports up to 4 locations,
501
+ # separated by commas. Each location will use a /26 block.
498
502
  # Corresponds to the JSON property `locations`
499
503
  # @return [Array<String>]
500
504
  attr_accessor :locations
@@ -1621,7 +1625,7 @@ module Google
1621
1625
  end
1622
1626
  end
1623
1627
 
1624
- # LINT.IfChange Defines policies to service maintenance events.
1628
+ # Defines policies to service maintenance events.
1625
1629
  class MaintenancePolicy
1626
1630
  include Google::Apis::Core::Hashable
1627
1631
 
@@ -1833,9 +1837,9 @@ module Google
1833
1837
  attr_accessor :api_version
1834
1838
 
1835
1839
  # Output only. Identifies whether the user has requested cancellation of the
1836
- # operation. Operations that have been cancelled successfully have Operation.
1837
- # error value with a google.rpc.Status.code of 1, corresponding to `Code.
1838
- # CANCELLED`.
1840
+ # operation. Operations that have been cancelled successfully have google.
1841
+ # longrunning.Operation.error value with a google.rpc.Status.code of `1`,
1842
+ # corresponding to `Code.CANCELLED`.
1839
1843
  # Corresponds to the JSON property `cancelRequested`
1840
1844
  # @return [Boolean]
1841
1845
  attr_accessor :cancel_requested
@@ -2325,24 +2329,28 @@ module Google
2325
2329
  class TimeOfDay
2326
2330
  include Google::Apis::Core::Hashable
2327
2331
 
2328
- # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to
2329
- # allow the value "24:00:00" for scenarios like business closing time.
2332
+ # Hours of a day in 24 hour format. Must be greater than or equal to 0 and
2333
+ # typically must be less than or equal to 23. An API may choose to allow the
2334
+ # value "24:00:00" for scenarios like business closing time.
2330
2335
  # Corresponds to the JSON property `hours`
2331
2336
  # @return [Fixnum]
2332
2337
  attr_accessor :hours
2333
2338
 
2334
- # Minutes of hour of day. Must be from 0 to 59.
2339
+ # Minutes of an hour. Must be greater than or equal to 0 and less than or equal
2340
+ # to 59.
2335
2341
  # Corresponds to the JSON property `minutes`
2336
2342
  # @return [Fixnum]
2337
2343
  attr_accessor :minutes
2338
2344
 
2339
- # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
2345
+ # Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and
2346
+ # less than or equal to 999,999,999.
2340
2347
  # Corresponds to the JSON property `nanos`
2341
2348
  # @return [Fixnum]
2342
2349
  attr_accessor :nanos
2343
2350
 
2344
- # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
2345
- # allow the value 60 if it allows leap-seconds.
2351
+ # Seconds of a minute. Must be greater than or equal to 0 and typically must be
2352
+ # less than or equal to 59. An API may allow the value 60 if it allows leap-
2353
+ # seconds.
2346
2354
  # Corresponds to the JSON property `seconds`
2347
2355
  # @return [Fixnum]
2348
2356
  attr_accessor :seconds
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ManagedidentitiesV1
18
18
  # Version of the google-apis-managedidentities_v1 gem
19
- GEM_VERSION = "0.36.0"
19
+ GEM_VERSION = "0.38.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240112"
25
+ REVISION = "20250116"
26
26
  end
27
27
  end
28
28
  end
@@ -1281,8 +1281,8 @@ module Google
1281
1281
  # Clients can use Operations.GetOperation or other methods to check whether the
1282
1282
  # cancellation succeeded or whether the operation completed despite cancellation.
1283
1283
  # On successful cancellation, the operation is not deleted; instead, it becomes
1284
- # an operation with an Operation.error value with a google.rpc.Status.code of 1,
1285
- # corresponding to `Code.CANCELLED`.
1284
+ # an operation with an Operation.error value with a google.rpc.Status.code of `1`
1285
+ # , corresponding to `Code.CANCELLED`.
1286
1286
  # @param [String] name
1287
1287
  # The name of the operation resource to be cancelled.
1288
1288
  # @param [Google::Apis::ManagedidentitiesV1::CancelOperationRequest] cancel_operation_request_object
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-managedidentities_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.36.0
4
+ version: 0.38.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-05-26 00:00:00.000000000 Z
10
+ date: 2025-03-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -59,9 +58,8 @@ licenses:
59
58
  metadata:
60
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
61
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-managedidentities_v1/CHANGELOG.md
62
- documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1/v0.36.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1/v0.38.0
63
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-managedidentities_v1
64
- post_install_message:
65
63
  rdoc_options: []
66
64
  require_paths:
67
65
  - lib
@@ -76,8 +74,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
76
74
  - !ruby/object:Gem::Version
77
75
  version: '0'
78
76
  requirements: []
79
- rubygems_version: 3.5.6
80
- signing_key:
77
+ rubygems_version: 3.6.5
81
78
  specification_version: 4
82
79
  summary: Simple REST client for Managed Service for Microsoft Active Directory API
83
80
  V1