google-apis-cloudidentity_v1 0.63.0 → 0.64.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 +4 -0
- data/lib/google/apis/cloudidentity_v1/gem_version.rb +2 -2
- data/lib/google/apis/cloudidentity_v1/service.rb +19 -12
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7cc155152addce2e234cb80a0208d438cc7edad495f551c0c43a1e3572c10748
|
|
4
|
+
data.tar.gz: 805f6a20ebb1960beb2899bd90016abaca34ccd430a3e07da364ab5bfa6f6688
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 70859224a5e8cae97d24951edcabb4f1088daec32037194a1f192351b088676229162a01d0acf94f7f96eb550c89ca29e2d13ecfad7678997122e881a0cf8c31
|
|
7
|
+
data.tar.gz: c569ac72f70d9374839e4531c79d5053291ee0bcf26c3bdfc330fe4c32a7afeefc44116b0efe72ce27dc94b6a8a927648fd9d2e9711bac15382b46cdb52f2a83
|
data/CHANGELOG.md
CHANGED
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CloudidentityV1
|
|
18
18
|
# Version of the google-apis-cloudidentity_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.64.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260826"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1439,18 +1439,25 @@ module Google
|
|
|
1439
1439
|
# The `next_page_token` value returned from a previous search request, if any.
|
|
1440
1440
|
# @param [String] query
|
|
1441
1441
|
# Required. The search query. * Must be specified in [Common Expression Language]
|
|
1442
|
-
# (https://opensource.google/projects/cel).
|
|
1443
|
-
#
|
|
1444
|
-
#
|
|
1445
|
-
#
|
|
1446
|
-
#
|
|
1447
|
-
#
|
|
1448
|
-
#
|
|
1449
|
-
# optional
|
|
1450
|
-
#
|
|
1451
|
-
#
|
|
1452
|
-
#
|
|
1453
|
-
#
|
|
1442
|
+
# (https://opensource.google/projects/cel). See [CEL Introduction](https://
|
|
1443
|
+
# github.com/google/cel-spec/blob/master/doc/intro.md) for CEL syntax usage and
|
|
1444
|
+
# examples. * Must contain equality operators on the parent, e.g. `parent == '
|
|
1445
|
+
# customers/`customer_id`'`. The `customer_id` must begin with "C" (for example,
|
|
1446
|
+
# 'C046psxkn'). [Find your customer ID.] (https://support.google.com/
|
|
1447
|
+
# cloudidentity/answer/10070793) * Can contain optional inclusion operators on `
|
|
1448
|
+
# labels` such as `'cloudidentity.googleapis.com/groups.discussion_forum' in
|
|
1449
|
+
# labels`). * Can contain an optional equality operator on `domain_name`. e.g. `
|
|
1450
|
+
# domain_name == 'examplepetstore.com'` * Can contain optional `startsWith/
|
|
1451
|
+
# contains/equality` operators on `group_key`, e.g. `group_key.startsWith('dev')`
|
|
1452
|
+
# , `group_key.contains('dev'), group_key == 'dev@examplepetstore.com'` * Can
|
|
1453
|
+
# contain optional `startsWith/contains/equality` operators on `display_name`,
|
|
1454
|
+
# such as `display_name.startsWith('dev')` , `display_name.contains('dev')`, `
|
|
1455
|
+
# display_name == 'dev'` Examples: * Search for all discussion forums under a
|
|
1456
|
+
# customer: `parent == 'customers/C046psxkn' && 'cloudidentity.googleapis.com/
|
|
1457
|
+
# groups.discussion_forum' in labels` * Search for groups with key starting with
|
|
1458
|
+
# 'sales': `parent == 'customers/C046psxkn' && group_key.startsWith('sales')` *
|
|
1459
|
+
# Search for groups with display name containing 'test': `parent == 'customers/
|
|
1460
|
+
# C046psxkn' && display_name.contains('test')`
|
|
1454
1461
|
# @param [String] view
|
|
1455
1462
|
# The level of detail to be returned. If unspecified, defaults to `View.BASIC`.
|
|
1456
1463
|
# @param [String] fields
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudidentity_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.64.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-cloudidentity_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1/v0.64.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudidentity_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|