google-apis-integrations_v1alpha 0.12.0 → 0.13.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: ef86b60fa11215d6cd6bdf2dbeccfb57d0dd45a47b1058e7b706262de1a5a4b5
|
|
4
|
+
data.tar.gz: 3fa873f3ac9f278f5421874e510b4ccac019036b1b131077b5bf6d57017879cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50ad6cf92d336f43d2098438bb8c587a1e5a5390ebd9440ed2c077ddbb9e25f235374a6c0ea6b22b52e4775bccd005763e393a7068743d89694a48a2a6cb0cc5
|
|
7
|
+
data.tar.gz: 155f2b87540fe4c9980f1c26dc752883a2fd996d95ba09a188ae67ee04629d56c199ebe0849c7b83c2a394ae24112ac86275f75c7d26e748520e5c5dab220dbd
|
data/CHANGELOG.md
CHANGED
|
@@ -1005,6 +1005,11 @@ module Google
|
|
|
1005
1005
|
# @return [Fixnum]
|
|
1006
1006
|
attr_accessor :task_attempt_num
|
|
1007
1007
|
|
|
1008
|
+
# the task label associated with this snapshot. Could be empty.
|
|
1009
|
+
# Corresponds to the JSON property `taskLabel`
|
|
1010
|
+
# @return [String]
|
|
1011
|
+
attr_accessor :task_label
|
|
1012
|
+
|
|
1008
1013
|
# the task name associated with this snapshot. Could be empty.
|
|
1009
1014
|
# Corresponds to the JSON property `taskName`
|
|
1010
1015
|
# @return [String]
|
|
@@ -1023,6 +1028,7 @@ module Google
|
|
|
1023
1028
|
def update!(**args)
|
|
1024
1029
|
@event_attempt_num = args[:event_attempt_num] if args.key?(:event_attempt_num)
|
|
1025
1030
|
@task_attempt_num = args[:task_attempt_num] if args.key?(:task_attempt_num)
|
|
1031
|
+
@task_label = args[:task_label] if args.key?(:task_label)
|
|
1026
1032
|
@task_name = args[:task_name] if args.key?(:task_name)
|
|
1027
1033
|
@task_number = args[:task_number] if args.key?(:task_number)
|
|
1028
1034
|
end
|
|
@@ -4858,6 +4864,12 @@ module Google
|
|
|
4858
4864
|
# @return [String]
|
|
4859
4865
|
attr_accessor :auth_type
|
|
4860
4866
|
|
|
4867
|
+
# Parameters to support Oauth 2.0 Auth Code Grant Authentication. See https://
|
|
4868
|
+
# www.rfc-editor.org/rfc/rfc6749#section-1.3.1 for more details.
|
|
4869
|
+
# Corresponds to the JSON property `oauth2AuthCodeFlow`
|
|
4870
|
+
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigOauth2AuthCodeFlow]
|
|
4871
|
+
attr_accessor :oauth2_auth_code_flow
|
|
4872
|
+
|
|
4861
4873
|
# Parameters to support Oauth 2.0 Client Credentials Grant Authentication. See
|
|
4862
4874
|
# https://tools.ietf.org/html/rfc6749#section-1.3.4 for more details.
|
|
4863
4875
|
# Corresponds to the JSON property `oauth2ClientCredentials`
|
|
@@ -4889,6 +4901,7 @@ module Google
|
|
|
4889
4901
|
def update!(**args)
|
|
4890
4902
|
@additional_variables = args[:additional_variables] if args.key?(:additional_variables)
|
|
4891
4903
|
@auth_type = args[:auth_type] if args.key?(:auth_type)
|
|
4904
|
+
@oauth2_auth_code_flow = args[:oauth2_auth_code_flow] if args.key?(:oauth2_auth_code_flow)
|
|
4892
4905
|
@oauth2_client_credentials = args[:oauth2_client_credentials] if args.key?(:oauth2_client_credentials)
|
|
4893
4906
|
@oauth2_jwt_bearer = args[:oauth2_jwt_bearer] if args.key?(:oauth2_jwt_bearer)
|
|
4894
4907
|
@ssh_public_key = args[:ssh_public_key] if args.key?(:ssh_public_key)
|
|
@@ -4896,6 +4909,63 @@ module Google
|
|
|
4896
4909
|
end
|
|
4897
4910
|
end
|
|
4898
4911
|
|
|
4912
|
+
# Parameters to support Oauth 2.0 Auth Code Grant Authentication. See https://
|
|
4913
|
+
# www.rfc-editor.org/rfc/rfc6749#section-1.3.1 for more details.
|
|
4914
|
+
class GoogleCloudConnectorsV1AuthConfigOauth2AuthCodeFlow
|
|
4915
|
+
include Google::Apis::Core::Hashable
|
|
4916
|
+
|
|
4917
|
+
# Authorization code to be exchanged for access and refresh tokens.
|
|
4918
|
+
# Corresponds to the JSON property `authCode`
|
|
4919
|
+
# @return [String]
|
|
4920
|
+
attr_accessor :auth_code
|
|
4921
|
+
|
|
4922
|
+
# Client ID for user-provided OAuth app.
|
|
4923
|
+
# Corresponds to the JSON property `clientId`
|
|
4924
|
+
# @return [String]
|
|
4925
|
+
attr_accessor :client_id
|
|
4926
|
+
|
|
4927
|
+
# Secret provides a reference to entries in Secret Manager.
|
|
4928
|
+
# Corresponds to the JSON property `clientSecret`
|
|
4929
|
+
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret]
|
|
4930
|
+
attr_accessor :client_secret
|
|
4931
|
+
|
|
4932
|
+
# Whether to enable PKCE when the user performs the auth code flow.
|
|
4933
|
+
# Corresponds to the JSON property `enablePkce`
|
|
4934
|
+
# @return [Boolean]
|
|
4935
|
+
attr_accessor :enable_pkce
|
|
4936
|
+
alias_method :enable_pkce?, :enable_pkce
|
|
4937
|
+
|
|
4938
|
+
# PKCE verifier to be used during the auth code exchange.
|
|
4939
|
+
# Corresponds to the JSON property `pkceVerifier`
|
|
4940
|
+
# @return [String]
|
|
4941
|
+
attr_accessor :pkce_verifier
|
|
4942
|
+
|
|
4943
|
+
# Redirect URI to be provided during the auth code exchange.
|
|
4944
|
+
# Corresponds to the JSON property `redirectUri`
|
|
4945
|
+
# @return [String]
|
|
4946
|
+
attr_accessor :redirect_uri
|
|
4947
|
+
|
|
4948
|
+
# Scopes the connection will request when the user performs the auth code flow.
|
|
4949
|
+
# Corresponds to the JSON property `scopes`
|
|
4950
|
+
# @return [Array<String>]
|
|
4951
|
+
attr_accessor :scopes
|
|
4952
|
+
|
|
4953
|
+
def initialize(**args)
|
|
4954
|
+
update!(**args)
|
|
4955
|
+
end
|
|
4956
|
+
|
|
4957
|
+
# Update properties of this object
|
|
4958
|
+
def update!(**args)
|
|
4959
|
+
@auth_code = args[:auth_code] if args.key?(:auth_code)
|
|
4960
|
+
@client_id = args[:client_id] if args.key?(:client_id)
|
|
4961
|
+
@client_secret = args[:client_secret] if args.key?(:client_secret)
|
|
4962
|
+
@enable_pkce = args[:enable_pkce] if args.key?(:enable_pkce)
|
|
4963
|
+
@pkce_verifier = args[:pkce_verifier] if args.key?(:pkce_verifier)
|
|
4964
|
+
@redirect_uri = args[:redirect_uri] if args.key?(:redirect_uri)
|
|
4965
|
+
@scopes = args[:scopes] if args.key?(:scopes)
|
|
4966
|
+
end
|
|
4967
|
+
end
|
|
4968
|
+
|
|
4899
4969
|
# Parameters to support Oauth 2.0 Client Credentials Grant Authentication. See
|
|
4900
4970
|
# https://tools.ietf.org/html/rfc6749#section-1.3.4 for more details.
|
|
4901
4971
|
class GoogleCloudConnectorsV1AuthConfigOauth2ClientCredentials
|
|
@@ -5149,6 +5219,11 @@ module Google
|
|
|
5149
5219
|
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1LockConfig]
|
|
5150
5220
|
attr_accessor :lock_config
|
|
5151
5221
|
|
|
5222
|
+
# Log configuration for the connection.
|
|
5223
|
+
# Corresponds to the JSON property `logConfig`
|
|
5224
|
+
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1LogConfig]
|
|
5225
|
+
attr_accessor :log_config
|
|
5226
|
+
|
|
5152
5227
|
# Output only. Resource name of the Connection. Format: projects/`project`/
|
|
5153
5228
|
# locations/`location`/connections/`connection`
|
|
5154
5229
|
# Corresponds to the JSON property `name`
|
|
@@ -5210,6 +5285,7 @@ module Google
|
|
|
5210
5285
|
@image_location = args[:image_location] if args.key?(:image_location)
|
|
5211
5286
|
@labels = args[:labels] if args.key?(:labels)
|
|
5212
5287
|
@lock_config = args[:lock_config] if args.key?(:lock_config)
|
|
5288
|
+
@log_config = args[:log_config] if args.key?(:log_config)
|
|
5213
5289
|
@name = args[:name] if args.key?(:name)
|
|
5214
5290
|
@node_config = args[:node_config] if args.key?(:node_config)
|
|
5215
5291
|
@service_account = args[:service_account] if args.key?(:service_account)
|
|
@@ -5335,6 +5411,26 @@ module Google
|
|
|
5335
5411
|
end
|
|
5336
5412
|
end
|
|
5337
5413
|
|
|
5414
|
+
# Log configuration for the connection.
|
|
5415
|
+
class GoogleCloudConnectorsV1LogConfig
|
|
5416
|
+
include Google::Apis::Core::Hashable
|
|
5417
|
+
|
|
5418
|
+
# Enabled represents whether logging is enabled or not for a connection.
|
|
5419
|
+
# Corresponds to the JSON property `enabled`
|
|
5420
|
+
# @return [Boolean]
|
|
5421
|
+
attr_accessor :enabled
|
|
5422
|
+
alias_method :enabled?, :enabled
|
|
5423
|
+
|
|
5424
|
+
def initialize(**args)
|
|
5425
|
+
update!(**args)
|
|
5426
|
+
end
|
|
5427
|
+
|
|
5428
|
+
# Update properties of this object
|
|
5429
|
+
def update!(**args)
|
|
5430
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
|
5431
|
+
end
|
|
5432
|
+
end
|
|
5433
|
+
|
|
5338
5434
|
# Node configuration for the connection.
|
|
5339
5435
|
class GoogleCloudConnectorsV1NodeConfig
|
|
5340
5436
|
include Google::Apis::Core::Hashable
|
|
@@ -6505,6 +6601,11 @@ module Google
|
|
|
6505
6601
|
# @return [Fixnum]
|
|
6506
6602
|
attr_accessor :task_attempt
|
|
6507
6603
|
|
|
6604
|
+
# the task label associated with this snapshot. Could be empty.
|
|
6605
|
+
# Corresponds to the JSON property `taskLabel`
|
|
6606
|
+
# @return [String]
|
|
6607
|
+
attr_accessor :task_label
|
|
6608
|
+
|
|
6508
6609
|
# The task number associated with this snapshot.
|
|
6509
6610
|
# Corresponds to the JSON property `taskNumber`
|
|
6510
6611
|
# @return [String]
|
|
@@ -6519,6 +6620,7 @@ module Google
|
|
|
6519
6620
|
@execution_attempt = args[:execution_attempt] if args.key?(:execution_attempt)
|
|
6520
6621
|
@task = args[:task] if args.key?(:task)
|
|
6521
6622
|
@task_attempt = args[:task_attempt] if args.key?(:task_attempt)
|
|
6623
|
+
@task_label = args[:task_label] if args.key?(:task_label)
|
|
6522
6624
|
@task_number = args[:task_number] if args.key?(:task_number)
|
|
6523
6625
|
end
|
|
6524
6626
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module IntegrationsV1alpha
|
|
18
18
|
# Version of the google-apis-integrations_v1alpha gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.13.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 = "20230409"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -748,6 +748,12 @@ module Google
|
|
|
748
748
|
include Google::Apis::Core::JsonObjectSupport
|
|
749
749
|
end
|
|
750
750
|
|
|
751
|
+
class GoogleCloudConnectorsV1AuthConfigOauth2AuthCodeFlow
|
|
752
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
753
|
+
|
|
754
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
755
|
+
end
|
|
756
|
+
|
|
751
757
|
class GoogleCloudConnectorsV1AuthConfigOauth2ClientCredentials
|
|
752
758
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
753
759
|
|
|
@@ -814,6 +820,12 @@ module Google
|
|
|
814
820
|
include Google::Apis::Core::JsonObjectSupport
|
|
815
821
|
end
|
|
816
822
|
|
|
823
|
+
class GoogleCloudConnectorsV1LogConfig
|
|
824
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
825
|
+
|
|
826
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
827
|
+
end
|
|
828
|
+
|
|
817
829
|
class GoogleCloudConnectorsV1NodeConfig
|
|
818
830
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
819
831
|
|
|
@@ -1655,6 +1667,7 @@ module Google
|
|
|
1655
1667
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1656
1668
|
property :event_attempt_num, as: 'eventAttemptNum'
|
|
1657
1669
|
property :task_attempt_num, as: 'taskAttemptNum'
|
|
1670
|
+
property :task_label, as: 'taskLabel'
|
|
1658
1671
|
property :task_name, as: 'taskName'
|
|
1659
1672
|
property :task_number, as: 'taskNumber'
|
|
1660
1673
|
end
|
|
@@ -2722,6 +2735,8 @@ module Google
|
|
|
2722
2735
|
collection :additional_variables, as: 'additionalVariables', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConfigVariable, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConfigVariable::Representation
|
|
2723
2736
|
|
|
2724
2737
|
property :auth_type, as: 'authType'
|
|
2738
|
+
property :oauth2_auth_code_flow, as: 'oauth2AuthCodeFlow', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigOauth2AuthCodeFlow, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigOauth2AuthCodeFlow::Representation
|
|
2739
|
+
|
|
2725
2740
|
property :oauth2_client_credentials, as: 'oauth2ClientCredentials', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigOauth2ClientCredentials, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigOauth2ClientCredentials::Representation
|
|
2726
2741
|
|
|
2727
2742
|
property :oauth2_jwt_bearer, as: 'oauth2JwtBearer', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer::Representation
|
|
@@ -2733,6 +2748,20 @@ module Google
|
|
|
2733
2748
|
end
|
|
2734
2749
|
end
|
|
2735
2750
|
|
|
2751
|
+
class GoogleCloudConnectorsV1AuthConfigOauth2AuthCodeFlow
|
|
2752
|
+
# @private
|
|
2753
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2754
|
+
property :auth_code, as: 'authCode'
|
|
2755
|
+
property :client_id, as: 'clientId'
|
|
2756
|
+
property :client_secret, as: 'clientSecret', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret::Representation
|
|
2757
|
+
|
|
2758
|
+
property :enable_pkce, as: 'enablePkce'
|
|
2759
|
+
property :pkce_verifier, as: 'pkceVerifier'
|
|
2760
|
+
property :redirect_uri, as: 'redirectUri'
|
|
2761
|
+
collection :scopes, as: 'scopes'
|
|
2762
|
+
end
|
|
2763
|
+
end
|
|
2764
|
+
|
|
2736
2765
|
class GoogleCloudConnectorsV1AuthConfigOauth2ClientCredentials
|
|
2737
2766
|
# @private
|
|
2738
2767
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2811,6 +2840,8 @@ module Google
|
|
|
2811
2840
|
hash :labels, as: 'labels'
|
|
2812
2841
|
property :lock_config, as: 'lockConfig', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1LockConfig, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1LockConfig::Representation
|
|
2813
2842
|
|
|
2843
|
+
property :log_config, as: 'logConfig', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1LogConfig, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1LogConfig::Representation
|
|
2844
|
+
|
|
2814
2845
|
property :name, as: 'name'
|
|
2815
2846
|
property :node_config, as: 'nodeConfig', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1NodeConfig, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1NodeConfig::Representation
|
|
2816
2847
|
|
|
@@ -2860,6 +2891,13 @@ module Google
|
|
|
2860
2891
|
end
|
|
2861
2892
|
end
|
|
2862
2893
|
|
|
2894
|
+
class GoogleCloudConnectorsV1LogConfig
|
|
2895
|
+
# @private
|
|
2896
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2897
|
+
property :enabled, as: 'enabled'
|
|
2898
|
+
end
|
|
2899
|
+
end
|
|
2900
|
+
|
|
2863
2901
|
class GoogleCloudConnectorsV1NodeConfig
|
|
2864
2902
|
# @private
|
|
2865
2903
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3184,6 +3222,7 @@ module Google
|
|
|
3184
3222
|
property :execution_attempt, as: 'executionAttempt'
|
|
3185
3223
|
property :task, as: 'task'
|
|
3186
3224
|
property :task_attempt, as: 'taskAttempt'
|
|
3225
|
+
property :task_label, as: 'taskLabel'
|
|
3187
3226
|
property :task_number, as: 'taskNumber'
|
|
3188
3227
|
end
|
|
3189
3228
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-integrations_v1alpha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.13.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-04-
|
|
11
|
+
date: 2023-04-16 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-integrations_v1alpha/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1alpha/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1alpha/v0.13.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-integrations_v1alpha
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|