google-apis-apihub_v1 0.3.0 → 0.4.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/apihub_v1/gem_version.rb +2 -2
- data/lib/google/apis/apihub_v1/service.rb +52 -38
- 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: bc622ccbcc1c476e1acbb415a54c7784036fdee2cdc0084e697e8eab7becaec8
|
4
|
+
data.tar.gz: 05f2ab56338a6fd7afee586c8bd74e32dacb704f6b244e61b6d71286df2c09e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed49a4930deb1ec906225d17173f8ad7278f2f5b85c3eedd21b52972ecadc37807cbf2f4a7d871f571521bedca9fe0abc25bd394923e9056427acdf41c3f17d3
|
7
|
+
data.tar.gz: d441e1105b5daea759ddef7c9ecc101946f015b344719642345b265d47f44af9cbd9d49fd43485f65b7d3d41f588fe24543770511e90bfbaa08ac5b4a66ef4d2
|
data/CHANGELOG.md
CHANGED
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ApihubV1
|
18
18
|
# Version of the google-apis-apihub_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.4.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 = "20250611"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -531,33 +531,37 @@ module Google
|
|
531
531
|
# json_values.values` - The allowed value of the user defined JSON attribute
|
532
532
|
# associated with the Resource. Allowed comparison operator is `:`. Here user-
|
533
533
|
# defined-attribute-json is a placeholder that can be replaced with any user
|
534
|
-
# defined JSON attribute name.
|
535
|
-
#
|
536
|
-
# of the
|
537
|
-
#
|
538
|
-
#
|
539
|
-
#
|
540
|
-
#
|
541
|
-
#
|
542
|
-
#
|
543
|
-
#
|
544
|
-
#
|
545
|
-
# email = \"apihub@google.com\"
|
546
|
-
#
|
547
|
-
#
|
548
|
-
#
|
549
|
-
#
|
550
|
-
#
|
551
|
-
#
|
552
|
-
#
|
553
|
-
#
|
554
|
-
#
|
555
|
-
#
|
556
|
-
#
|
557
|
-
#
|
558
|
-
#
|
559
|
-
#
|
560
|
-
#
|
534
|
+
# defined JSON attribute name. A filter function is also supported in the filter
|
535
|
+
# string. The filter function is `id(name)`. The `id(name)` function returns the
|
536
|
+
# id of the resource name. For example, `id(name) = \"api-1\"` is equivalent to `
|
537
|
+
# name = \"projects/test-project-id/locations/test-location-id/apis/api-1\"`
|
538
|
+
# provided the parent is `projects/test-project-id/locations/test-location-id`.
|
539
|
+
# Expressions are combined with either `AND` logic operator or `OR` logical
|
540
|
+
# operator but not both of them together i.e. only one of the `AND` or `OR`
|
541
|
+
# operator can be used throughout the filter string and both the operators
|
542
|
+
# cannot be used together. No other logical operators are supported. At most
|
543
|
+
# three filter fields are allowed in the filter string and if provided more than
|
544
|
+
# that then `INVALID_ARGUMENT` error is returned by the API. Here are a few
|
545
|
+
# examples: * `owner.email = \"apihub@google.com\"` - - The owner team email is
|
546
|
+
# _apihub@google.com_. * `owner.email = \"apihub@google.com\" AND create_time < \
|
547
|
+
# "2021-08-15T14:50:00Z\" AND create_time > \"2021-08-10T12:00:00Z\"` - The
|
548
|
+
# owner team email is _apihub@google.com_ and the api was created before _2021-
|
549
|
+
# 08-15 14:50:00 UTC_ and after _2021-08-10 12:00:00 UTC_. * `owner.email = \"
|
550
|
+
# apihub@google.com\" OR team.enum_values.values.id: apihub-team-id` - The
|
551
|
+
# filter string specifies the APIs where the owner team email is _apihub@google.
|
552
|
+
# com_ or the id of the allowed value associated with the team attribute is
|
553
|
+
# _apihub-team-id_. * `owner.email = \"apihub@google.com\" OR team.enum_values.
|
554
|
+
# values.display_name: ApiHub Team` - The filter string specifies the APIs where
|
555
|
+
# the owner team email is _apihub@google.com_ or the display name of the allowed
|
556
|
+
# value associated with the team attribute is `ApiHub Team`. * `owner.email = \"
|
557
|
+
# apihub@google.com\" AND attributes.projects/test-project-id/locations/test-
|
558
|
+
# location-id/ attributes/17650f90-4a29-4971-b3c0-d5532da3764b.enum_values.
|
559
|
+
# values.id: test_enum_id AND attributes.projects/test-project-id/locations/test-
|
560
|
+
# location-id/ attributes/1765\0f90-4a29-5431-b3d0-d5532da3764c.string_values.
|
561
|
+
# values: test_string_value` - The filter string specifies the APIs where the
|
562
|
+
# owner team email is _apihub@google.com_ and the id of the allowed value
|
563
|
+
# associated with the user defined attribute of type enum is _test_enum_id_ and
|
564
|
+
# the value of the user defined attribute of type string is _test_..
|
561
565
|
# @param [Fixnum] page_size
|
562
566
|
# Optional. The maximum number of API resources to return. The service may
|
563
567
|
# return fewer than this value. If unspecified, at most 50 Apis will be returned.
|
@@ -2312,7 +2316,12 @@ module Google
|
|
2312
2316
|
# json_values.values` - The allowed value of the user defined JSON attribute
|
2313
2317
|
# associated with the Resource. Allowed comparison operator is `:`. Here user-
|
2314
2318
|
# defined-attribute-json is a placeholder that can be replaced with any user
|
2315
|
-
# defined JSON attribute name.
|
2319
|
+
# defined JSON attribute name. A filter function is also supported in the filter
|
2320
|
+
# string. The filter function is `id(name)`. The `id(name)` function returns the
|
2321
|
+
# id of the resource name. For example, `id(name) = \"deployment-1\"` is
|
2322
|
+
# equivalent to `name = \"projects/test-project-id/locations/test-location-id/
|
2323
|
+
# deployments/deployment-1\"` provided the parent is `projects/test-project-id/
|
2324
|
+
# locations/test-location-id`. Expressions are combined with either `AND` logic
|
2316
2325
|
# operator or `OR` logical operator but not both of them together i.e. only one
|
2317
2326
|
# of the `AND` or `OR` operator can be used throughout the filter string and
|
2318
2327
|
# both the operators cannot be used together. No other logical operators are
|
@@ -2379,8 +2388,8 @@ module Google
|
|
2379
2388
|
# Update a deployment resource in the API hub. The following fields in the
|
2380
2389
|
# deployment resource can be updated: * display_name * description *
|
2381
2390
|
# documentation * deployment_type * resource_uri * endpoints * slo * environment
|
2382
|
-
# * attributes
|
2383
|
-
# updated.
|
2391
|
+
# * attributes * source_project * source_environment * management_url *
|
2392
|
+
# source_uri The update_mask should be used to specify the fields being updated.
|
2384
2393
|
# @param [String] name
|
2385
2394
|
# Identifier. The name of the deployment. Format: `projects/`project`/locations/`
|
2386
2395
|
# location`/deployments/`deployment``
|
@@ -3397,14 +3406,19 @@ module Google
|
|
3397
3406
|
# filtering. The value must be a string. The comparison operator must be one of:
|
3398
3407
|
# `<`, `>` or `=`. Filters are not case sensitive. The following fields in the `
|
3399
3408
|
# PluginInstances` are eligible for filtering: * `state` - The state of the
|
3400
|
-
# Plugin Instance. Allowed comparison operators: `=`.
|
3401
|
-
#
|
3402
|
-
#
|
3403
|
-
#
|
3404
|
-
#
|
3405
|
-
#
|
3406
|
-
#
|
3407
|
-
#
|
3409
|
+
# Plugin Instance. Allowed comparison operators: `=`. A filter function is also
|
3410
|
+
# supported in the filter string. The filter function is `id(name)`. The `id(
|
3411
|
+
# name)` function returns the id of the resource name. For example, `id(name) = \
|
3412
|
+
# "plugin-instance-1\"` is equivalent to `name = \"projects/test-project-id/
|
3413
|
+
# locations/test-location-id/plugins/plugin-1/instances/plugin-instance-1\"`
|
3414
|
+
# provided the parent is `projects/test-project-id/locations/test-location-id/
|
3415
|
+
# plugins/plugin-1`. Expressions are combined with either `AND` logic operator
|
3416
|
+
# or `OR` logical operator but not both of them together i.e. only one of the `
|
3417
|
+
# AND` or `OR` operator can be used throughout the filter string and both the
|
3418
|
+
# operators cannot be used together. No other logical operators are supported.
|
3419
|
+
# At most three filter fields are allowed in the filter string and if provided
|
3420
|
+
# more than that then `INVALID_ARGUMENT` error is returned by the API. Here are
|
3421
|
+
# a few examples: * `state = ENABLED` - The plugin instance is in enabled state.
|
3408
3422
|
# @param [Fixnum] page_size
|
3409
3423
|
# Optional. The maximum number of hub plugins to return. The service may return
|
3410
3424
|
# fewer than this value. If unspecified, at most 50 hub plugins will be returned.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-apihub_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.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-apihub_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-apihub_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apihub_v1/v0.4.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apihub_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|