google-apis-integrations_v1 0.11.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: 6ae59990eff6e15573a3a18535a9012758c3e14d9310feef2a29cd1d9a2f9e6f
|
4
|
+
data.tar.gz: 13d86a6a787e92a67bf9c465035061521773ba8c9e87d55af47d99f9eb0aa94d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 41c12ccbb863af2afa8576d5aec794816116c95e16673d752f685d213df14a590147afd662ed2406847e0318fd94adbdedb4f5acc7bca276dfcc65bd551ddc81
|
7
|
+
data.tar.gz: cdf93ac5cb1980cb9dd4c6bae519baa6cfc3e483d575f4c8498d0094cef7493586e0f8bc5051177bf130e39a123fc0201c9a80c7251fd187327883e815bfc9b0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-integrations_v1
|
2
2
|
|
3
|
+
### v0.13.0 (2025-05-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250521
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
8
|
+
### v0.12.0 (2025-05-18)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20250506
|
11
|
+
|
3
12
|
### v0.11.0 (2025-05-11)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250427
|
@@ -5062,17 +5062,17 @@ module Google
|
|
5062
5062
|
class GoogleCloudConnectorsV1AuthConfig
|
5063
5063
|
include Google::Apis::Core::Hashable
|
5064
5064
|
|
5065
|
-
# List containing additional auth configs.
|
5065
|
+
# Optional. List containing additional auth configs.
|
5066
5066
|
# Corresponds to the JSON property `additionalVariables`
|
5067
5067
|
# @return [Array<Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1ConfigVariable>]
|
5068
5068
|
attr_accessor :additional_variables
|
5069
5069
|
|
5070
|
-
# Identifier key for auth config
|
5070
|
+
# Optional. Identifier key for auth config
|
5071
5071
|
# Corresponds to the JSON property `authKey`
|
5072
5072
|
# @return [String]
|
5073
5073
|
attr_accessor :auth_key
|
5074
5074
|
|
5075
|
-
# The type of authentication configured.
|
5075
|
+
# Optional. The type of authentication configured.
|
5076
5076
|
# Corresponds to the JSON property `authType`
|
5077
5077
|
# @return [String]
|
5078
5078
|
attr_accessor :auth_type
|
@@ -5136,17 +5136,17 @@ module Google
|
|
5136
5136
|
class GoogleCloudConnectorsV1AuthConfigOauth2AuthCodeFlow
|
5137
5137
|
include Google::Apis::Core::Hashable
|
5138
5138
|
|
5139
|
-
# Authorization code to be exchanged for access and refresh tokens.
|
5139
|
+
# Optional. Authorization code to be exchanged for access and refresh tokens.
|
5140
5140
|
# Corresponds to the JSON property `authCode`
|
5141
5141
|
# @return [String]
|
5142
5142
|
attr_accessor :auth_code
|
5143
5143
|
|
5144
|
-
# Auth URL for Authorization Code Flow
|
5144
|
+
# Optional. Auth URL for Authorization Code Flow
|
5145
5145
|
# Corresponds to the JSON property `authUri`
|
5146
5146
|
# @return [String]
|
5147
5147
|
attr_accessor :auth_uri
|
5148
5148
|
|
5149
|
-
# Client ID for user-provided OAuth app.
|
5149
|
+
# Optional. Client ID for user-provided OAuth app.
|
5150
5150
|
# Corresponds to the JSON property `clientId`
|
5151
5151
|
# @return [String]
|
5152
5152
|
attr_accessor :client_id
|
@@ -5156,23 +5156,24 @@ module Google
|
|
5156
5156
|
# @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1Secret]
|
5157
5157
|
attr_accessor :client_secret
|
5158
5158
|
|
5159
|
-
# Whether to enable PKCE when the user performs the auth code flow.
|
5159
|
+
# Optional. Whether to enable PKCE when the user performs the auth code flow.
|
5160
5160
|
# Corresponds to the JSON property `enablePkce`
|
5161
5161
|
# @return [Boolean]
|
5162
5162
|
attr_accessor :enable_pkce
|
5163
5163
|
alias_method :enable_pkce?, :enable_pkce
|
5164
5164
|
|
5165
|
-
# PKCE verifier to be used during the auth code exchange.
|
5165
|
+
# Optional. PKCE verifier to be used during the auth code exchange.
|
5166
5166
|
# Corresponds to the JSON property `pkceVerifier`
|
5167
5167
|
# @return [String]
|
5168
5168
|
attr_accessor :pkce_verifier
|
5169
5169
|
|
5170
|
-
# Redirect URI to be provided during the auth code exchange.
|
5170
|
+
# Optional. Redirect URI to be provided during the auth code exchange.
|
5171
5171
|
# Corresponds to the JSON property `redirectUri`
|
5172
5172
|
# @return [String]
|
5173
5173
|
attr_accessor :redirect_uri
|
5174
5174
|
|
5175
|
-
# Scopes the connection will request when the user performs the auth
|
5175
|
+
# Optional. Scopes the connection will request when the user performs the auth
|
5176
|
+
# code flow.
|
5176
5177
|
# Corresponds to the JSON property `scopes`
|
5177
5178
|
# @return [Array<String>]
|
5178
5179
|
attr_accessor :scopes
|
@@ -5233,7 +5234,7 @@ module Google
|
|
5233
5234
|
class GoogleCloudConnectorsV1AuthConfigOauth2ClientCredentials
|
5234
5235
|
include Google::Apis::Core::Hashable
|
5235
5236
|
|
5236
|
-
# The client identifier.
|
5237
|
+
# Optional. The client identifier.
|
5237
5238
|
# Corresponds to the JSON property `clientId`
|
5238
5239
|
# @return [String]
|
5239
5240
|
attr_accessor :client_id
|
@@ -5285,17 +5286,17 @@ module Google
|
|
5285
5286
|
class GoogleCloudConnectorsV1AuthConfigOauth2JwtBearerJwtClaims
|
5286
5287
|
include Google::Apis::Core::Hashable
|
5287
5288
|
|
5288
|
-
# Value for the "aud" claim.
|
5289
|
+
# Optional. Value for the "aud" claim.
|
5289
5290
|
# Corresponds to the JSON property `audience`
|
5290
5291
|
# @return [String]
|
5291
5292
|
attr_accessor :audience
|
5292
5293
|
|
5293
|
-
# Value for the "iss" claim.
|
5294
|
+
# Optional. Value for the "iss" claim.
|
5294
5295
|
# Corresponds to the JSON property `issuer`
|
5295
5296
|
# @return [String]
|
5296
5297
|
attr_accessor :issuer
|
5297
5298
|
|
5298
|
-
# Value for the "sub" claim.
|
5299
|
+
# Optional. Value for the "sub" claim.
|
5299
5300
|
# Corresponds to the JSON property `subject`
|
5300
5301
|
# @return [String]
|
5301
5302
|
attr_accessor :subject
|
@@ -5316,7 +5317,7 @@ module Google
|
|
5316
5317
|
class GoogleCloudConnectorsV1AuthConfigSshPublicKey
|
5317
5318
|
include Google::Apis::Core::Hashable
|
5318
5319
|
|
5319
|
-
# Format of SSH Client cert.
|
5320
|
+
# Optional. Format of SSH Client cert.
|
5320
5321
|
# Corresponds to the JSON property `certType`
|
5321
5322
|
# @return [String]
|
5322
5323
|
attr_accessor :cert_type
|
@@ -5331,7 +5332,7 @@ module Google
|
|
5331
5332
|
# @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1Secret]
|
5332
5333
|
attr_accessor :ssh_client_cert_pass
|
5333
5334
|
|
5334
|
-
# The user account used to authenticate.
|
5335
|
+
# Optional. The user account used to authenticate.
|
5335
5336
|
# Corresponds to the JSON property `username`
|
5336
5337
|
# @return [String]
|
5337
5338
|
attr_accessor :username
|
@@ -5358,7 +5359,7 @@ module Google
|
|
5358
5359
|
# @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1Secret]
|
5359
5360
|
attr_accessor :password
|
5360
5361
|
|
5361
|
-
# Username.
|
5362
|
+
# Optional. Username.
|
5362
5363
|
# Corresponds to the JSON property `username`
|
5363
5364
|
# @return [String]
|
5364
5365
|
attr_accessor :username
|
@@ -5414,7 +5415,7 @@ module Google
|
|
5414
5415
|
# @return [Fixnum]
|
5415
5416
|
attr_accessor :int_value
|
5416
5417
|
|
5417
|
-
# Key of the config variable.
|
5418
|
+
# Optional. Key of the config variable.
|
5418
5419
|
# Corresponds to the JSON property `key`
|
5419
5420
|
# @return [String]
|
5420
5421
|
attr_accessor :key
|
@@ -5525,6 +5526,11 @@ module Google
|
|
5525
5526
|
# @return [String]
|
5526
5527
|
attr_accessor :envoy_image_location
|
5527
5528
|
|
5529
|
+
# AuthConfig defines details of a authentication type.
|
5530
|
+
# Corresponds to the JSON property `euaOauthAuthConfig`
|
5531
|
+
# @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfig]
|
5532
|
+
attr_accessor :eua_oauth_auth_config
|
5533
|
+
|
5528
5534
|
# Eventing Configuration of a connection next: 18
|
5529
5535
|
# Corresponds to the JSON property `eventingConfig`
|
5530
5536
|
# @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1EventingConfig]
|
@@ -5541,6 +5547,15 @@ module Google
|
|
5541
5547
|
# @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1EventingRuntimeData]
|
5542
5548
|
attr_accessor :eventing_runtime_data
|
5543
5549
|
|
5550
|
+
# Optional. Fallback on admin credentials for the connection. If this both
|
5551
|
+
# auth_override_enabled and fallback_on_admin_credentials are set to true, the
|
5552
|
+
# connection will use the admin credentials if the dynamic auth header is not
|
5553
|
+
# present during auth override.
|
5554
|
+
# Corresponds to the JSON property `fallbackOnAdminCredentials`
|
5555
|
+
# @return [Boolean]
|
5556
|
+
attr_accessor :fallback_on_admin_credentials
|
5557
|
+
alias_method :fallback_on_admin_credentials?, :fallback_on_admin_credentials
|
5558
|
+
|
5544
5559
|
# Output only. The name of the Hostname of the Service Directory service with
|
5545
5560
|
# TLS.
|
5546
5561
|
# Corresponds to the JSON property `host`
|
@@ -5658,9 +5673,11 @@ module Google
|
|
5658
5673
|
@description = args[:description] if args.key?(:description)
|
5659
5674
|
@destination_configs = args[:destination_configs] if args.key?(:destination_configs)
|
5660
5675
|
@envoy_image_location = args[:envoy_image_location] if args.key?(:envoy_image_location)
|
5676
|
+
@eua_oauth_auth_config = args[:eua_oauth_auth_config] if args.key?(:eua_oauth_auth_config)
|
5661
5677
|
@eventing_config = args[:eventing_config] if args.key?(:eventing_config)
|
5662
5678
|
@eventing_enablement_type = args[:eventing_enablement_type] if args.key?(:eventing_enablement_type)
|
5663
5679
|
@eventing_runtime_data = args[:eventing_runtime_data] if args.key?(:eventing_runtime_data)
|
5680
|
+
@fallback_on_admin_credentials = args[:fallback_on_admin_credentials] if args.key?(:fallback_on_admin_credentials)
|
5664
5681
|
@host = args[:host] if args.key?(:host)
|
5665
5682
|
@image_location = args[:image_location] if args.key?(:image_location)
|
5666
5683
|
@is_trusted_tester = args[:is_trusted_tester] if args.key?(:is_trusted_tester)
|
@@ -5853,9 +5870,9 @@ module Google
|
|
5853
5870
|
class GoogleCloudConnectorsV1EncryptionKey
|
5854
5871
|
include Google::Apis::Core::Hashable
|
5855
5872
|
|
5856
|
-
# The [KMS key name] with which the content of the Operation is
|
5857
|
-
# expected format: `projects/*/locations/*/keyRings/*/cryptoKeys
|
5858
|
-
# empty string if google managed.
|
5873
|
+
# Optional. The [KMS key name] with which the content of the Operation is
|
5874
|
+
# encrypted. The expected format: `projects/*/locations/*/keyRings/*/cryptoKeys/*
|
5875
|
+
# `. Will be empty string if google managed.
|
5859
5876
|
# Corresponds to the JSON property `kmsKeyName`
|
5860
5877
|
# @return [String]
|
5861
5878
|
attr_accessor :kms_key_name
|
@@ -6174,13 +6191,13 @@ module Google
|
|
6174
6191
|
class GoogleCloudConnectorsV1LockConfig
|
6175
6192
|
include Google::Apis::Core::Hashable
|
6176
6193
|
|
6177
|
-
# Indicates whether or not the connection is locked.
|
6194
|
+
# Optional. Indicates whether or not the connection is locked.
|
6178
6195
|
# Corresponds to the JSON property `locked`
|
6179
6196
|
# @return [Boolean]
|
6180
6197
|
attr_accessor :locked
|
6181
6198
|
alias_method :locked?, :locked
|
6182
6199
|
|
6183
|
-
# Describes why a connection is locked.
|
6200
|
+
# Optional. Describes why a connection is locked.
|
6184
6201
|
# Corresponds to the JSON property `reason`
|
6185
6202
|
# @return [String]
|
6186
6203
|
attr_accessor :reason
|
@@ -6200,7 +6217,8 @@ module Google
|
|
6200
6217
|
class GoogleCloudConnectorsV1LogConfig
|
6201
6218
|
include Google::Apis::Core::Hashable
|
6202
6219
|
|
6203
|
-
# Enabled represents whether logging is enabled or not for a
|
6220
|
+
# Optional. Enabled represents whether logging is enabled or not for a
|
6221
|
+
# connection.
|
6204
6222
|
# Corresponds to the JSON property `enabled`
|
6205
6223
|
# @return [Boolean]
|
6206
6224
|
attr_accessor :enabled
|
@@ -6226,12 +6244,12 @@ module Google
|
|
6226
6244
|
class GoogleCloudConnectorsV1NodeConfig
|
6227
6245
|
include Google::Apis::Core::Hashable
|
6228
6246
|
|
6229
|
-
# Maximum number of nodes in the runtime nodes.
|
6247
|
+
# Optional. Maximum number of nodes in the runtime nodes.
|
6230
6248
|
# Corresponds to the JSON property `maxNodeCount`
|
6231
6249
|
# @return [Fixnum]
|
6232
6250
|
attr_accessor :max_node_count
|
6233
6251
|
|
6234
|
-
# Minimum number of nodes in the runtime nodes.
|
6252
|
+
# Optional. Minimum number of nodes in the runtime nodes.
|
6235
6253
|
# Corresponds to the JSON property `minNodeCount`
|
6236
6254
|
# @return [Fixnum]
|
6237
6255
|
attr_accessor :min_node_count
|
@@ -6301,8 +6319,8 @@ module Google
|
|
6301
6319
|
class GoogleCloudConnectorsV1Secret
|
6302
6320
|
include Google::Apis::Core::Hashable
|
6303
6321
|
|
6304
|
-
# The resource name of the secret version in the format, format as: `
|
6305
|
-
# secrets/*/versions/*`.
|
6322
|
+
# Optional. The resource name of the secret version in the format, format as: `
|
6323
|
+
# projects/*/secrets/*/versions/*`.
|
6306
6324
|
# Corresponds to the JSON property `secretVersion`
|
6307
6325
|
# @return [String]
|
6308
6326
|
attr_accessor :secret_version
|
@@ -7057,6 +7075,13 @@ module Google
|
|
7057
7075
|
attr_accessor :enable_internal_ip
|
7058
7076
|
alias_method :enable_internal_ip?, :enable_internal_ip
|
7059
7077
|
|
7078
|
+
# Optional. Indicates if the Cloud Companion APIs will be used in the tenant
|
7079
|
+
# project, i.e. if customer can use the managed AI features for free.
|
7080
|
+
# Corresponds to the JSON property `enableManagedAiFeatures`
|
7081
|
+
# @return [Boolean]
|
7082
|
+
attr_accessor :enable_managed_ai_features
|
7083
|
+
alias_method :enable_managed_ai_features?, :enable_managed_ai_features
|
7084
|
+
|
7060
7085
|
# Optional. True if variable masking feature should be turned on for this region
|
7061
7086
|
# Corresponds to the JSON property `enableVariableMasking`
|
7062
7087
|
# @return [Boolean]
|
@@ -7109,6 +7134,7 @@ module Google
|
|
7109
7134
|
@description = args[:description] if args.key?(:description)
|
7110
7135
|
@enable_http_call = args[:enable_http_call] if args.key?(:enable_http_call)
|
7111
7136
|
@enable_internal_ip = args[:enable_internal_ip] if args.key?(:enable_internal_ip)
|
7137
|
+
@enable_managed_ai_features = args[:enable_managed_ai_features] if args.key?(:enable_managed_ai_features)
|
7112
7138
|
@enable_variable_masking = args[:enable_variable_masking] if args.key?(:enable_variable_masking)
|
7113
7139
|
@id = args[:id] if args.key?(:id)
|
7114
7140
|
@is_gmek = args[:is_gmek] if args.key?(:is_gmek)
|
@@ -10103,6 +10129,38 @@ module Google
|
|
10103
10129
|
end
|
10104
10130
|
end
|
10105
10131
|
|
10132
|
+
# Request for PostProvisioning rpc call.
|
10133
|
+
class GoogleCloudIntegrationsV1alphaProvisionClientPostProcessorRequest
|
10134
|
+
include Google::Apis::Core::Hashable
|
10135
|
+
|
10136
|
+
# Optional. Indicate which workflows to create
|
10137
|
+
# Corresponds to the JSON property `workflows`
|
10138
|
+
# @return [Array<String>]
|
10139
|
+
attr_accessor :workflows
|
10140
|
+
|
10141
|
+
def initialize(**args)
|
10142
|
+
update!(**args)
|
10143
|
+
end
|
10144
|
+
|
10145
|
+
# Update properties of this object
|
10146
|
+
def update!(**args)
|
10147
|
+
@workflows = args[:workflows] if args.key?(:workflows)
|
10148
|
+
end
|
10149
|
+
end
|
10150
|
+
|
10151
|
+
# Response for PostProvisioning rpc call.
|
10152
|
+
class GoogleCloudIntegrationsV1alphaProvisionClientPostProcessorResponse
|
10153
|
+
include Google::Apis::Core::Hashable
|
10154
|
+
|
10155
|
+
def initialize(**args)
|
10156
|
+
update!(**args)
|
10157
|
+
end
|
10158
|
+
|
10159
|
+
# Update properties of this object
|
10160
|
+
def update!(**args)
|
10161
|
+
end
|
10162
|
+
end
|
10163
|
+
|
10106
10164
|
# Request for the Provision rpc
|
10107
10165
|
class GoogleCloudIntegrationsV1alphaProvisionClientRequest
|
10108
10166
|
include Google::Apis::Core::Hashable
|
@@ -10125,6 +10183,15 @@ module Google
|
|
10125
10183
|
attr_accessor :enable_http_call
|
10126
10184
|
alias_method :enable_http_call?, :enable_http_call
|
10127
10185
|
|
10186
|
+
# Optional. Indicates if the client should be allowed to use managed AI features,
|
10187
|
+
# i.e. using Cloud Companion APIs of the tenant project. This will allow the
|
10188
|
+
# customers to use features like Troubleshooting, OpenAPI spec enrichment, etc.
|
10189
|
+
# for free.
|
10190
|
+
# Corresponds to the JSON property `enableManagedAiFeatures`
|
10191
|
+
# @return [Boolean]
|
10192
|
+
attr_accessor :enable_managed_ai_features
|
10193
|
+
alias_method :enable_managed_ai_features?, :enable_managed_ai_features
|
10194
|
+
|
10128
10195
|
# Optional. Deprecated. Indicates provision with GMEK or CMEK. This field is
|
10129
10196
|
# deprecated and the provision would always be GMEK if cloud_kms_config is not
|
10130
10197
|
# present in the request.
|
@@ -10154,6 +10221,7 @@ module Google
|
|
10154
10221
|
@cloud_kms_config = args[:cloud_kms_config] if args.key?(:cloud_kms_config)
|
10155
10222
|
@create_sample_workflows = args[:create_sample_workflows] if args.key?(:create_sample_workflows)
|
10156
10223
|
@enable_http_call = args[:enable_http_call] if args.key?(:enable_http_call)
|
10224
|
+
@enable_managed_ai_features = args[:enable_managed_ai_features] if args.key?(:enable_managed_ai_features)
|
10157
10225
|
@provision_gmek = args[:provision_gmek] if args.key?(:provision_gmek)
|
10158
10226
|
@run_as_service_account = args[:run_as_service_account] if args.key?(:run_as_service_account)
|
10159
10227
|
@skip_cp_provision = args[:skip_cp_provision] if args.key?(:skip_cp_provision)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module IntegrationsV1
|
18
18
|
# Version of the google-apis-integrations_v1 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
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250521"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1528,6 +1528,18 @@ module Google
|
|
1528
1528
|
include Google::Apis::Core::JsonObjectSupport
|
1529
1529
|
end
|
1530
1530
|
|
1531
|
+
class GoogleCloudIntegrationsV1alphaProvisionClientPostProcessorRequest
|
1532
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1533
|
+
|
1534
|
+
include Google::Apis::Core::JsonObjectSupport
|
1535
|
+
end
|
1536
|
+
|
1537
|
+
class GoogleCloudIntegrationsV1alphaProvisionClientPostProcessorResponse
|
1538
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1539
|
+
|
1540
|
+
include Google::Apis::Core::JsonObjectSupport
|
1541
|
+
end
|
1542
|
+
|
1531
1543
|
class GoogleCloudIntegrationsV1alphaProvisionClientRequest
|
1532
1544
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1533
1545
|
|
@@ -3408,11 +3420,14 @@ module Google
|
|
3408
3420
|
collection :destination_configs, as: 'destinationConfigs', class: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1DestinationConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1DestinationConfig::Representation
|
3409
3421
|
|
3410
3422
|
property :envoy_image_location, as: 'envoyImageLocation'
|
3423
|
+
property :eua_oauth_auth_config, as: 'euaOauthAuthConfig', class: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfig::Representation
|
3424
|
+
|
3411
3425
|
property :eventing_config, as: 'eventingConfig', class: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1EventingConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1EventingConfig::Representation
|
3412
3426
|
|
3413
3427
|
property :eventing_enablement_type, as: 'eventingEnablementType'
|
3414
3428
|
property :eventing_runtime_data, as: 'eventingRuntimeData', class: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1EventingRuntimeData, decorator: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1EventingRuntimeData::Representation
|
3415
3429
|
|
3430
|
+
property :fallback_on_admin_credentials, as: 'fallbackOnAdminCredentials'
|
3416
3431
|
property :host, as: 'host'
|
3417
3432
|
property :image_location, as: 'imageLocation'
|
3418
3433
|
property :is_trusted_tester, as: 'isTrustedTester'
|
@@ -3814,6 +3829,7 @@ module Google
|
|
3814
3829
|
property :description, as: 'description'
|
3815
3830
|
property :enable_http_call, as: 'enableHttpCall'
|
3816
3831
|
property :enable_internal_ip, as: 'enableInternalIp'
|
3832
|
+
property :enable_managed_ai_features, as: 'enableManagedAiFeatures'
|
3817
3833
|
property :enable_variable_masking, as: 'enableVariableMasking'
|
3818
3834
|
property :id, as: 'id'
|
3819
3835
|
property :is_gmek, as: 'isGmek'
|
@@ -4693,6 +4709,19 @@ module Google
|
|
4693
4709
|
end
|
4694
4710
|
end
|
4695
4711
|
|
4712
|
+
class GoogleCloudIntegrationsV1alphaProvisionClientPostProcessorRequest
|
4713
|
+
# @private
|
4714
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4715
|
+
collection :workflows, as: 'workflows'
|
4716
|
+
end
|
4717
|
+
end
|
4718
|
+
|
4719
|
+
class GoogleCloudIntegrationsV1alphaProvisionClientPostProcessorResponse
|
4720
|
+
# @private
|
4721
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4722
|
+
end
|
4723
|
+
end
|
4724
|
+
|
4696
4725
|
class GoogleCloudIntegrationsV1alphaProvisionClientRequest
|
4697
4726
|
# @private
|
4698
4727
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4700,6 +4729,7 @@ module Google
|
|
4700
4729
|
|
4701
4730
|
property :create_sample_workflows, as: 'createSampleWorkflows'
|
4702
4731
|
property :enable_http_call, as: 'enableHttpCall'
|
4732
|
+
property :enable_managed_ai_features, as: 'enableManagedAiFeatures'
|
4703
4733
|
property :provision_gmek, as: 'provisionGmek'
|
4704
4734
|
property :run_as_service_account, as: 'runAsServiceAccount'
|
4705
4735
|
property :skip_cp_provision, as: 'skipCpProvision'
|
@@ -794,6 +794,39 @@ module Google
|
|
794
794
|
execute_or_queue_command(command, &block)
|
795
795
|
end
|
796
796
|
|
797
|
+
# Perform post provisioning steps after client is provisioned.
|
798
|
+
# @param [String] parent
|
799
|
+
# Required. Required: The ID of the GCP Project to be provisioned.
|
800
|
+
# @param [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaProvisionClientPostProcessorRequest] google_cloud_integrations_v1alpha_provision_client_post_processor_request_object
|
801
|
+
# @param [String] fields
|
802
|
+
# Selector specifying which fields to include in a partial response.
|
803
|
+
# @param [String] quota_user
|
804
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
805
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
806
|
+
# @param [Google::Apis::RequestOptions] options
|
807
|
+
# Request-specific options
|
808
|
+
#
|
809
|
+
# @yield [result, err] Result & error if block supplied
|
810
|
+
# @yieldparam result [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaProvisionClientPostProcessorResponse] parsed result object
|
811
|
+
# @yieldparam err [StandardError] error object if request failed
|
812
|
+
#
|
813
|
+
# @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaProvisionClientPostProcessorResponse]
|
814
|
+
#
|
815
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
816
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
817
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
818
|
+
def provision_project_location_client_client_post_processor(parent, google_cloud_integrations_v1alpha_provision_client_post_processor_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
819
|
+
command = make_simple_command(:post, 'v1/{+parent}/clients:provisionClientPostProcessor', options)
|
820
|
+
command.request_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaProvisionClientPostProcessorRequest::Representation
|
821
|
+
command.request_object = google_cloud_integrations_v1alpha_provision_client_post_processor_request_object
|
822
|
+
command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaProvisionClientPostProcessorResponse::Representation
|
823
|
+
command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaProvisionClientPostProcessorResponse
|
824
|
+
command.params['parent'] = parent unless parent.nil?
|
825
|
+
command.query['fields'] = fields unless fields.nil?
|
826
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
827
|
+
execute_or_queue_command(command, &block)
|
828
|
+
end
|
829
|
+
|
797
830
|
# Update run-as service account for provisioned client
|
798
831
|
# @param [String] parent
|
799
832
|
# Required. Required: The ID of the GCP Project to be provisioned.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-integrations_v1
|
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
|
@@ -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-integrations_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1/v0.13.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-integrations_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Application Integration API V1
|
79
79
|
test_files: []
|