google-apis-servicedirectory_v1beta1 0.20.0 → 0.21.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e7fe3b41033c8e2bdaef26a467d4a2d17bfd88342d95639f839834d49d0e27ec
|
4
|
+
data.tar.gz: 3d594c875de2fb61f1501a2cb477094f6d017b6c3a94dd9cec053f6906472ef3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 733413fdbfcf884dcae8233ba64ff953565b3919b22bcb18d100c2749e086a09513e43668679414103175e795bff0e7ab251496479e13ae2b98b84361e7b16ed
|
7
|
+
data.tar.gz: 8a075afec02ffba0f05b158dddf03c781d90edb38ea940467826a6af0a79ffb4c57a1c4c3fcdb87395899187f95169f12b8ae7f8cc0efc02d52a91ec5b73babb
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-servicedirectory_v1beta1
|
2
2
|
|
3
|
+
### v0.21.0 (2022-06-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220612
|
6
|
+
* Regenerated using generator version 0.7.0
|
7
|
+
|
3
8
|
### v0.20.0 (2022-06-06)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20220526
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServicedirectoryV1beta1
|
18
18
|
# Version of the google-apis-servicedirectory_v1beta1 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
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.7.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220612"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -267,20 +267,22 @@ module Google
|
|
267
267
|
# like to list.
|
268
268
|
# @param [String] filter
|
269
269
|
# Optional. The filter to list results by. General `filter` string syntax: ` ()`
|
270
|
-
# * `` can be `name
|
271
|
-
#
|
272
|
-
#
|
273
|
-
# valid filters: * `labels.owner`
|
274
|
-
# key `owner`, this is the same as
|
275
|
-
# namespaces that have key/value `
|
276
|
-
# locations/us-east1/namespaces/namespace-
|
277
|
-
# that is alphabetically later than the
|
278
|
-
# "namespace-a" is not * `labels.owner!=
|
279
|
-
# namespaces that have `owner` in label key but
|
280
|
-
# value `foo=bar` * `doesnotexist.foo=bar`
|
281
|
-
# namespace doesn't have a field called "
|
282
|
-
# not match any namespaces, it returns no
|
283
|
-
#
|
270
|
+
# * `` can be `name`, `labels.` for map field, or `attributes.` for attributes
|
271
|
+
# field * `` can be `<`, `>`, `<=`, `>=`, `!=`, `=`, `:`. Of which `:` means `
|
272
|
+
# HAS`, and is roughly the same as `=` * `` must be the same data type as field *
|
273
|
+
# `` can be `AND`, `OR`, `NOT` Examples of valid filters: * `labels.owner`
|
274
|
+
# returns namespaces that have a label with the key `owner`, this is the same as
|
275
|
+
# `labels:owner` * `labels.owner=sd` returns namespaces that have key/value `
|
276
|
+
# owner=sd` * `name>projects/my-project/locations/us-east1/namespaces/namespace-
|
277
|
+
# c` returns namespaces that have name that is alphabetically later than the
|
278
|
+
# string, so "namespace-e" is returned but "namespace-a" is not * `labels.owner!=
|
279
|
+
# sd AND labels.foo=bar` returns namespaces that have `owner` in label key but
|
280
|
+
# value is not `sd` AND have key/value `foo=bar` * `doesnotexist.foo=bar`
|
281
|
+
# returns an empty list. Note that namespace doesn't have a field called "
|
282
|
+
# doesnotexist". Since the filter does not match any namespaces, it returns no
|
283
|
+
# results * `attributes.managed_registration=true` returns namespaces that are
|
284
|
+
# managed by a GCP product or service For more information about filtering, see [
|
285
|
+
# API Filtering](https://aip.dev/160).
|
284
286
|
# @param [String] order_by
|
285
287
|
# Optional. The order to list results by. General `order_by` string syntax: ` ()
|
286
288
|
# (,)` * `` allows value: `name` * `` ascending or descending order by ``. If
|
@@ -583,8 +585,9 @@ module Google
|
|
583
585
|
# key but value is not `sd` AND have key/value `foo=bar` * `doesnotexist.foo=bar`
|
584
586
|
# returns an empty list. Note that service doesn't have a field called "
|
585
587
|
# doesnotexist". Since the filter does not match any services, it returns no
|
586
|
-
# results
|
587
|
-
#
|
588
|
+
# results * `attributes.managed_registration=true` returns services that are
|
589
|
+
# managed by a GCP product or service For more information about filtering, see [
|
590
|
+
# API Filtering](https://aip.dev/160).
|
588
591
|
# @param [String] order_by
|
589
592
|
# Optional. The order to list results by. General `order_by` string syntax: ` ()
|
590
593
|
# (,)` * `` allows value: `name` * `` ascending or descending order by ``. If
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-servicedirectory_v1beta1
|
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: 2022-06-
|
11
|
+
date: 2022-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.6'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.6'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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-servicedirectory_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicedirectory_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicedirectory_v1beta1/v0.21.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicedirectory_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|