google-apis-connectors_v1 0.35.0 → 0.36.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: daeaefc2ec97828eaf9a9289165b37ec8c27bfbcafa1b9403d47813996aecc41
|
4
|
+
data.tar.gz: 429c1f83e8cf3f45ce5dbb7419ed0fdea315269b2486991a09f40c6163c52241
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c23effa09a7d083f24b2d8085b886c77049fe7a9f16bf3c0993b262136d47bc6fe0526c60b4faa4e2e09bb0cd09072077c6cc0128bad10c3cfc5b79320928f32
|
7
|
+
data.tar.gz: 5255cb57d77d7144912e0d34c9ff83ce575d9e8ea0626098baa86b3d796e62ffefa2a79ecb7db25e68c77440a78d6d92e7f2221d25ccdecb982845a4642716f2
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,12 @@
|
|
1
1
|
# Release history for google-apis-connectors_v1
|
2
2
|
|
3
|
-
### v0.
|
3
|
+
### v0.36.0 (2023-08-13)
|
4
4
|
|
5
|
-
* Regenerated from discovery document revision
|
5
|
+
* Regenerated from discovery document revision 20230806
|
6
|
+
|
7
|
+
### v0.35.0 (2023-08-06)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230801
|
6
10
|
|
7
11
|
### v0.34.0 (2023-07-23)
|
8
12
|
|
@@ -836,6 +836,11 @@ module Google
|
|
836
836
|
class ConnectorInfraConfig
|
837
837
|
include Google::Apis::Core::Hashable
|
838
838
|
|
839
|
+
# Max QPS supported for internal requests originating from Connd.
|
840
|
+
# Corresponds to the JSON property `internalclientRatelimitThreshold`
|
841
|
+
# @return [Fixnum]
|
842
|
+
attr_accessor :internalclient_ratelimit_threshold
|
843
|
+
|
839
844
|
# Max QPS supported by the connector version before throttling of requests.
|
840
845
|
# Corresponds to the JSON property `ratelimitThreshold`
|
841
846
|
# @return [Fixnum]
|
@@ -847,6 +852,7 @@ module Google
|
|
847
852
|
|
848
853
|
# Update properties of this object
|
849
854
|
def update!(**args)
|
855
|
+
@internalclient_ratelimit_threshold = args[:internalclient_ratelimit_threshold] if args.key?(:internalclient_ratelimit_threshold)
|
850
856
|
@ratelimit_threshold = args[:ratelimit_threshold] if args.key?(:ratelimit_threshold)
|
851
857
|
end
|
852
858
|
end
|
@@ -983,6 +989,11 @@ module Google
|
|
983
989
|
class ConnectorVersionInfraConfig
|
984
990
|
include Google::Apis::Core::Hashable
|
985
991
|
|
992
|
+
# Output only. Max QPS supported for internal requests originating from Connd.
|
993
|
+
# Corresponds to the JSON property `internalclientRatelimitThreshold`
|
994
|
+
# @return [Fixnum]
|
995
|
+
attr_accessor :internalclient_ratelimit_threshold
|
996
|
+
|
986
997
|
# Output only. Max QPS supported by the connector version before throttling of
|
987
998
|
# requests.
|
988
999
|
# Corresponds to the JSON property `ratelimitThreshold`
|
@@ -995,6 +1006,7 @@ module Google
|
|
995
1006
|
|
996
1007
|
# Update properties of this object
|
997
1008
|
def update!(**args)
|
1009
|
+
@internalclient_ratelimit_threshold = args[:internalclient_ratelimit_threshold] if args.key?(:internalclient_ratelimit_threshold)
|
998
1010
|
@ratelimit_threshold = args[:ratelimit_threshold] if args.key?(:ratelimit_threshold)
|
999
1011
|
end
|
1000
1012
|
end
|
@@ -2726,13 +2738,13 @@ module Google
|
|
2726
2738
|
# @return [String]
|
2727
2739
|
attr_accessor :name
|
2728
2740
|
|
2729
|
-
# The normal response of the operation
|
2730
|
-
#
|
2731
|
-
#
|
2732
|
-
#
|
2733
|
-
#
|
2734
|
-
#
|
2735
|
-
#
|
2741
|
+
# The normal, successful response of the operation. If the original method
|
2742
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
2743
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
2744
|
+
# response should be the resource. For other methods, the response should have
|
2745
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
2746
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
2747
|
+
# `TakeSnapshotResponse`.
|
2736
2748
|
# Corresponds to the JSON property `response`
|
2737
2749
|
# @return [Hash<String,Object>]
|
2738
2750
|
attr_accessor :response
|
@@ -2821,22 +2833,22 @@ module Google
|
|
2821
2833
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
2822
2834
|
# the request, the resource, or both. To learn which resources support
|
2823
2835
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
2824
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
2836
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
2825
2837
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
2826
2838
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
2827
2839
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
2828
2840
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
2829
2841
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
2830
2842
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
2831
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
2832
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
2833
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
2834
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
2835
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
2836
|
-
# access description: Does not grant access after Sep 2020
|
2837
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
2838
|
-
# a description of IAM and its features, see the
|
2839
|
-
# cloud.google.com/iam/docs/).
|
2843
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
2844
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
2845
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
2846
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
2847
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
2848
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
2849
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
2850
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
2851
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
2840
2852
|
class Policy
|
2841
2853
|
include Google::Apis::Core::Hashable
|
2842
2854
|
|
@@ -3291,22 +3303,22 @@ module Google
|
|
3291
3303
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
3292
3304
|
# the request, the resource, or both. To learn which resources support
|
3293
3305
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
3294
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
3306
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
3295
3307
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
3296
3308
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
3297
3309
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
3298
3310
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
3299
3311
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
3300
3312
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
3301
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
3302
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
3303
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
3304
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
3305
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
3306
|
-
# access description: Does not grant access after Sep 2020
|
3307
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
3308
|
-
# a description of IAM and its features, see the
|
3309
|
-
# cloud.google.com/iam/docs/).
|
3313
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
3314
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
3315
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
3316
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
3317
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
3318
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
3319
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
3320
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
3321
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
3310
3322
|
# Corresponds to the JSON property `policy`
|
3311
3323
|
# @return [Google::Apis::ConnectorsV1::Policy]
|
3312
3324
|
attr_accessor :policy
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ConnectorsV1
|
18
18
|
# Version of the google-apis-connectors_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.36.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230806"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -746,6 +746,7 @@ module Google
|
|
746
746
|
class ConnectorInfraConfig
|
747
747
|
# @private
|
748
748
|
class Representation < Google::Apis::Core::JsonRepresentation
|
749
|
+
property :internalclient_ratelimit_threshold, :numeric_string => true, as: 'internalclientRatelimitThreshold'
|
749
750
|
property :ratelimit_threshold, :numeric_string => true, as: 'ratelimitThreshold'
|
750
751
|
end
|
751
752
|
end
|
@@ -786,6 +787,7 @@ module Google
|
|
786
787
|
class ConnectorVersionInfraConfig
|
787
788
|
# @private
|
788
789
|
class Representation < Google::Apis::Core::JsonRepresentation
|
790
|
+
property :internalclient_ratelimit_threshold, :numeric_string => true, as: 'internalclientRatelimitThreshold'
|
789
791
|
property :ratelimit_threshold, :numeric_string => true, as: 'ratelimitThreshold'
|
790
792
|
end
|
791
793
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-connectors_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.36.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: 2023-08-
|
11
|
+
date: 2023-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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-connectors_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.36.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|