google-apis-connectors_v1 0.29.0 → 0.30.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: 883c613dc1b7a9d154e2c49028b36df378b4158a4e37ac598cc8ff6afa0f8efb
|
4
|
+
data.tar.gz: 898668f61797807ab3ef2a996d834ed148d14f9a60caf0b08a530d10615a350e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: edf651c9e097e7b6290775f40c6c90d846bcc8e51377ac7aefb6e7e3d51cc2a64846077ab2421c15000771f29819a29ec6b225a23436ce5dbce840119ce32a71
|
7
|
+
data.tar.gz: c424cbcf37867e171dcb5b38eae6cc36b074015d75761fa07af9fa611f129a85556c1609b86448106a08a93fb0ce8e16b79f39313b750eda7d1b9bc7a82c99c6
|
data/CHANGELOG.md
CHANGED
@@ -486,6 +486,11 @@ module Google
|
|
486
486
|
# @return [String]
|
487
487
|
attr_accessor :connector_version
|
488
488
|
|
489
|
+
# Output only. Flag to mark the version indicating the launch stage.
|
490
|
+
# Corresponds to the JSON property `connectorVersionLaunchStage`
|
491
|
+
# @return [String]
|
492
|
+
attr_accessor :connector_version_launch_stage
|
493
|
+
|
489
494
|
# Output only. Created time.
|
490
495
|
# Corresponds to the JSON property `createTime`
|
491
496
|
# @return [String]
|
@@ -592,6 +597,7 @@ module Google
|
|
592
597
|
@auth_config = args[:auth_config] if args.key?(:auth_config)
|
593
598
|
@config_variables = args[:config_variables] if args.key?(:config_variables)
|
594
599
|
@connector_version = args[:connector_version] if args.key?(:connector_version)
|
600
|
+
@connector_version_launch_stage = args[:connector_version_launch_stage] if args.key?(:connector_version_launch_stage)
|
595
601
|
@create_time = args[:create_time] if args.key?(:create_time)
|
596
602
|
@description = args[:description] if args.key?(:description)
|
597
603
|
@destination_configs = args[:destination_configs] if args.key?(:destination_configs)
|
@@ -1861,6 +1867,11 @@ module Google
|
|
1861
1867
|
# @return [String]
|
1862
1868
|
attr_accessor :auth_code
|
1863
1869
|
|
1870
|
+
# Auth URL for Authorization Code Flow
|
1871
|
+
# Corresponds to the JSON property `authUri`
|
1872
|
+
# @return [String]
|
1873
|
+
attr_accessor :auth_uri
|
1874
|
+
|
1864
1875
|
# Client ID for user-provided OAuth app.
|
1865
1876
|
# Corresponds to the JSON property `clientId`
|
1866
1877
|
# @return [String]
|
@@ -1899,6 +1910,7 @@ module Google
|
|
1899
1910
|
# Update properties of this object
|
1900
1911
|
def update!(**args)
|
1901
1912
|
@auth_code = args[:auth_code] if args.key?(:auth_code)
|
1913
|
+
@auth_uri = args[:auth_uri] if args.key?(:auth_uri)
|
1902
1914
|
@client_id = args[:client_id] if args.key?(:client_id)
|
1903
1915
|
@client_secret = args[:client_secret] if args.key?(:client_secret)
|
1904
1916
|
@enable_pkce = args[:enable_pkce] if args.key?(:enable_pkce)
|
@@ -2591,6 +2603,11 @@ module Google
|
|
2591
2603
|
attr_accessor :payg
|
2592
2604
|
alias_method :payg?, :payg
|
2593
2605
|
|
2606
|
+
# Output only. Tenant project id of the consumer project.
|
2607
|
+
# Corresponds to the JSON property `tenantProjectId`
|
2608
|
+
# @return [String]
|
2609
|
+
attr_accessor :tenant_project_id
|
2610
|
+
|
2594
2611
|
# Optional. Flag indicates whether vpc-sc is enabled.
|
2595
2612
|
# Corresponds to the JSON property `vpcsc`
|
2596
2613
|
# @return [Boolean]
|
@@ -2605,6 +2622,7 @@ module Google
|
|
2605
2622
|
def update!(**args)
|
2606
2623
|
@name = args[:name] if args.key?(:name)
|
2607
2624
|
@payg = args[:payg] if args.key?(:payg)
|
2625
|
+
@tenant_project_id = args[:tenant_project_id] if args.key?(:tenant_project_id)
|
2608
2626
|
@vpcsc = args[:vpcsc] if args.key?(:vpcsc)
|
2609
2627
|
end
|
2610
2628
|
end
|
@@ -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.30.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 = "20230514"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -545,6 +545,7 @@ module Google
|
|
545
545
|
collection :config_variables, as: 'configVariables', class: Google::Apis::ConnectorsV1::ConfigVariable, decorator: Google::Apis::ConnectorsV1::ConfigVariable::Representation
|
546
546
|
|
547
547
|
property :connector_version, as: 'connectorVersion'
|
548
|
+
property :connector_version_launch_stage, as: 'connectorVersionLaunchStage'
|
548
549
|
property :create_time, as: 'createTime'
|
549
550
|
property :description, as: 'description'
|
550
551
|
collection :destination_configs, as: 'destinationConfigs', class: Google::Apis::ConnectorsV1::DestinationConfig, decorator: Google::Apis::ConnectorsV1::DestinationConfig::Representation
|
@@ -914,6 +915,7 @@ module Google
|
|
914
915
|
# @private
|
915
916
|
class Representation < Google::Apis::Core::JsonRepresentation
|
916
917
|
property :auth_code, as: 'authCode'
|
918
|
+
property :auth_uri, as: 'authUri'
|
917
919
|
property :client_id, as: 'clientId'
|
918
920
|
property :client_secret, as: 'clientSecret', class: Google::Apis::ConnectorsV1::Secret, decorator: Google::Apis::ConnectorsV1::Secret::Representation
|
919
921
|
|
@@ -1087,6 +1089,7 @@ module Google
|
|
1087
1089
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1088
1090
|
property :name, as: 'name'
|
1089
1091
|
property :payg, as: 'payg'
|
1092
|
+
property :tenant_project_id, as: 'tenantProjectId'
|
1090
1093
|
property :vpcsc, as: 'vpcsc'
|
1091
1094
|
end
|
1092
1095
|
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.30.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-05-
|
11
|
+
date: 2023-05-28 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.30.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: []
|