google-apis-connectors_v1 0.70.0 → 0.72.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 +9 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/connectors_v1/classes.rb +210 -80
- data/lib/google/apis/connectors_v1/gem_version.rb +3 -3
- data/lib/google/apis/connectors_v1/representations.rb +60 -11
- data/lib/google/apis/connectors_v1/service.rb +17 -6
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1937ad4821bc71fec223c8d5633acaeca0a3241e6101d0cbaa67f1a429c54e30
|
4
|
+
data.tar.gz: edfdecdc8aab154fffd2cec568900ff6e6fb90a5ea7941ee3e85948eb7c84c30
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7f7de4cc432b952923e4ad166e632987a0471280c2c3c8a538c024a54cd4e4be706c411544284b167ca8ce966b3e4fc21966fc8ec50c3505267b556d0c37d8d
|
7
|
+
data.tar.gz: 77ce6bb455f3a6198bf8d6d883f9355e53fad524e675fa3e6b2c3c22d216715acd97209028ce0c600fec214a1e0a3b8dc7907bdee33f408dbb733eaea702057c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-connectors_v1
|
2
2
|
|
3
|
+
### v0.72.0 (2025-05-18)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250507
|
6
|
+
|
7
|
+
### v0.71.0 (2025-05-04)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250423
|
10
|
+
* Regenerated using generator version 0.17.0
|
11
|
+
|
3
12
|
### v0.70.0 (2025-04-27)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250415
|
data/OVERVIEW.md
CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/apigee/docs/api-platform/co
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby
|
86
|
+
This library is supported on Ruby 3.1+.
|
87
87
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
@@ -97,17 +97,17 @@ module Google
|
|
97
97
|
class AuthConfig
|
98
98
|
include Google::Apis::Core::Hashable
|
99
99
|
|
100
|
-
# List containing additional auth configs.
|
100
|
+
# Optional. List containing additional auth configs.
|
101
101
|
# Corresponds to the JSON property `additionalVariables`
|
102
102
|
# @return [Array<Google::Apis::ConnectorsV1::ConfigVariable>]
|
103
103
|
attr_accessor :additional_variables
|
104
104
|
|
105
|
-
# Identifier key for auth config
|
105
|
+
# Optional. Identifier key for auth config
|
106
106
|
# Corresponds to the JSON property `authKey`
|
107
107
|
# @return [String]
|
108
108
|
attr_accessor :auth_key
|
109
109
|
|
110
|
-
# The type of authentication configured.
|
110
|
+
# Optional. The type of authentication configured.
|
111
111
|
# Corresponds to the JSON property `authType`
|
112
112
|
# @return [String]
|
113
113
|
attr_accessor :auth_type
|
@@ -588,7 +588,7 @@ module Google
|
|
588
588
|
# @return [Fixnum]
|
589
589
|
attr_accessor :int_value
|
590
590
|
|
591
|
-
# Key of the config variable.
|
591
|
+
# Optional. Key of the config variable.
|
592
592
|
# Corresponds to the JSON property `key`
|
593
593
|
# @return [String]
|
594
594
|
attr_accessor :key
|
@@ -814,6 +814,11 @@ module Google
|
|
814
814
|
# @return [String]
|
815
815
|
attr_accessor :envoy_image_location
|
816
816
|
|
817
|
+
# AuthConfig defines details of a authentication type.
|
818
|
+
# Corresponds to the JSON property `euaOauthAuthConfig`
|
819
|
+
# @return [Google::Apis::ConnectorsV1::AuthConfig]
|
820
|
+
attr_accessor :eua_oauth_auth_config
|
821
|
+
|
817
822
|
# Eventing Configuration of a connection next: 18
|
818
823
|
# Corresponds to the JSON property `eventingConfig`
|
819
824
|
# @return [Google::Apis::ConnectorsV1::EventingConfig]
|
@@ -830,6 +835,15 @@ module Google
|
|
830
835
|
# @return [Google::Apis::ConnectorsV1::EventingRuntimeData]
|
831
836
|
attr_accessor :eventing_runtime_data
|
832
837
|
|
838
|
+
# Optional. Fallback on admin credentials for the connection. If this both
|
839
|
+
# auth_override_enabled and fallback_on_admin_credentials are set to true, the
|
840
|
+
# connection will use the admin credentials if the dynamic auth header is not
|
841
|
+
# present during auth override.
|
842
|
+
# Corresponds to the JSON property `fallbackOnAdminCredentials`
|
843
|
+
# @return [Boolean]
|
844
|
+
attr_accessor :fallback_on_admin_credentials
|
845
|
+
alias_method :fallback_on_admin_credentials?, :fallback_on_admin_credentials
|
846
|
+
|
833
847
|
# Output only. The name of the Hostname of the Service Directory service with
|
834
848
|
# TLS.
|
835
849
|
# Corresponds to the JSON property `host`
|
@@ -947,9 +961,11 @@ module Google
|
|
947
961
|
@description = args[:description] if args.key?(:description)
|
948
962
|
@destination_configs = args[:destination_configs] if args.key?(:destination_configs)
|
949
963
|
@envoy_image_location = args[:envoy_image_location] if args.key?(:envoy_image_location)
|
964
|
+
@eua_oauth_auth_config = args[:eua_oauth_auth_config] if args.key?(:eua_oauth_auth_config)
|
950
965
|
@eventing_config = args[:eventing_config] if args.key?(:eventing_config)
|
951
966
|
@eventing_enablement_type = args[:eventing_enablement_type] if args.key?(:eventing_enablement_type)
|
952
967
|
@eventing_runtime_data = args[:eventing_runtime_data] if args.key?(:eventing_runtime_data)
|
968
|
+
@fallback_on_admin_credentials = args[:fallback_on_admin_credentials] if args.key?(:fallback_on_admin_credentials)
|
953
969
|
@host = args[:host] if args.key?(:host)
|
954
970
|
@image_location = args[:image_location] if args.key?(:image_location)
|
955
971
|
@is_trusted_tester = args[:is_trusted_tester] if args.key?(:is_trusted_tester)
|
@@ -1221,6 +1237,11 @@ module Google
|
|
1221
1237
|
attr_accessor :migrate_tls
|
1222
1238
|
alias_method :migrate_tls?, :migrate_tls
|
1223
1239
|
|
1240
|
+
# Indicate whether connector is being migrated to use direct VPC egress.
|
1241
|
+
# Corresponds to the JSON property `networkEgressMode`
|
1242
|
+
# @return [String]
|
1243
|
+
attr_accessor :network_egress_mode
|
1244
|
+
|
1224
1245
|
# Indicate whether cloud spanner is required for connector job.
|
1225
1246
|
# Corresponds to the JSON property `provisionCloudSpanner`
|
1226
1247
|
# @return [Boolean]
|
@@ -1268,6 +1289,7 @@ module Google
|
|
1268
1289
|
@max_instance_request_concurrency = args[:max_instance_request_concurrency] if args.key?(:max_instance_request_concurrency)
|
1269
1290
|
@migrate_deployment_model = args[:migrate_deployment_model] if args.key?(:migrate_deployment_model)
|
1270
1291
|
@migrate_tls = args[:migrate_tls] if args.key?(:migrate_tls)
|
1292
|
+
@network_egress_mode = args[:network_egress_mode] if args.key?(:network_egress_mode)
|
1271
1293
|
@provision_cloud_spanner = args[:provision_cloud_spanner] if args.key?(:provision_cloud_spanner)
|
1272
1294
|
@provision_memstore = args[:provision_memstore] if args.key?(:provision_memstore)
|
1273
1295
|
@ratelimit_threshold = args[:ratelimit_threshold] if args.key?(:ratelimit_threshold)
|
@@ -1331,12 +1353,6 @@ module Google
|
|
1331
1353
|
# @return [Google::Apis::ConnectorsV1::EventingConfigTemplate]
|
1332
1354
|
attr_accessor :eventing_config_template
|
1333
1355
|
|
1334
|
-
# Output only. Is async operations supported.
|
1335
|
-
# Corresponds to the JSON property `isAsyncOperationsSupported`
|
1336
|
-
# @return [Boolean]
|
1337
|
-
attr_accessor :is_async_operations_supported
|
1338
|
-
alias_method :is_async_operations_supported?, :is_async_operations_supported
|
1339
|
-
|
1340
1356
|
# Output only. Is custom actions supported.
|
1341
1357
|
# Corresponds to the JSON property `isCustomActionsSupported`
|
1342
1358
|
# @return [Boolean]
|
@@ -1368,6 +1384,11 @@ module Google
|
|
1368
1384
|
# @return [String]
|
1369
1385
|
attr_accessor :name
|
1370
1386
|
|
1387
|
+
# Optional. The priority entity types for the connector version.
|
1388
|
+
# Corresponds to the JSON property `priorityEntityTypes`
|
1389
|
+
# @return [Array<Google::Apis::ConnectorsV1::PriorityEntityType>]
|
1390
|
+
attr_accessor :priority_entity_types
|
1391
|
+
|
1371
1392
|
# Output only. ReleaseVersion of the connector, for example: "1.0.1-alpha".
|
1372
1393
|
# Corresponds to the JSON property `releaseVersion`
|
1373
1394
|
# @return [String]
|
@@ -1437,12 +1458,12 @@ module Google
|
|
1437
1458
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1438
1459
|
@egress_control_config = args[:egress_control_config] if args.key?(:egress_control_config)
|
1439
1460
|
@eventing_config_template = args[:eventing_config_template] if args.key?(:eventing_config_template)
|
1440
|
-
@is_async_operations_supported = args[:is_async_operations_supported] if args.key?(:is_async_operations_supported)
|
1441
1461
|
@is_custom_actions_supported = args[:is_custom_actions_supported] if args.key?(:is_custom_actions_supported)
|
1442
1462
|
@is_custom_entities_supported = args[:is_custom_entities_supported] if args.key?(:is_custom_entities_supported)
|
1443
1463
|
@labels = args[:labels] if args.key?(:labels)
|
1444
1464
|
@launch_stage = args[:launch_stage] if args.key?(:launch_stage)
|
1445
1465
|
@name = args[:name] if args.key?(:name)
|
1466
|
+
@priority_entity_types = args[:priority_entity_types] if args.key?(:priority_entity_types)
|
1446
1467
|
@release_version = args[:release_version] if args.key?(:release_version)
|
1447
1468
|
@role_grant = args[:role_grant] if args.key?(:role_grant)
|
1448
1469
|
@role_grants = args[:role_grants] if args.key?(:role_grants)
|
@@ -1541,7 +1562,8 @@ module Google
|
|
1541
1562
|
class ConnectorsLogConfig
|
1542
1563
|
include Google::Apis::Core::Hashable
|
1543
1564
|
|
1544
|
-
# Enabled represents whether logging is enabled or not for a
|
1565
|
+
# Optional. Enabled represents whether logging is enabled or not for a
|
1566
|
+
# connection.
|
1545
1567
|
# Corresponds to the JSON property `enabled`
|
1546
1568
|
# @return [Boolean]
|
1547
1569
|
attr_accessor :enabled
|
@@ -1656,13 +1678,35 @@ module Google
|
|
1656
1678
|
class CustomConnectorVersion
|
1657
1679
|
include Google::Apis::Core::Hashable
|
1658
1680
|
|
1681
|
+
# Optional. Indicates if Async Operations/Connector Job is supported. This is
|
1682
|
+
# only available for SDK based custom connectors.
|
1683
|
+
# Corresponds to the JSON property `asyncOperationsSupport`
|
1684
|
+
# @return [Boolean]
|
1685
|
+
attr_accessor :async_operations_support
|
1686
|
+
alias_method :async_operations_support?, :async_operations_support
|
1687
|
+
|
1659
1688
|
# AuthConfig defines details of a authentication type.
|
1660
1689
|
# Corresponds to the JSON property `authConfig`
|
1661
1690
|
# @return [Google::Apis::ConnectorsV1::AuthConfig]
|
1662
1691
|
attr_accessor :auth_config
|
1663
1692
|
|
1664
|
-
# Optional.
|
1665
|
-
#
|
1693
|
+
# Optional. Auth Config Templates is only used when connector backend is enabled.
|
1694
|
+
# This is used to specify the auth configs supported by the connector backend
|
1695
|
+
# service to talk to the actual application backend.
|
1696
|
+
# Corresponds to the JSON property `authConfigTemplates`
|
1697
|
+
# @return [Array<Google::Apis::ConnectorsV1::AuthConfigTemplate>]
|
1698
|
+
attr_accessor :auth_config_templates
|
1699
|
+
|
1700
|
+
# Optional. Auth override support.
|
1701
|
+
# Corresponds to the JSON property `authOverrideSupport`
|
1702
|
+
# @return [Boolean]
|
1703
|
+
attr_accessor :auth_override_support
|
1704
|
+
alias_method :auth_override_support?, :auth_override_support
|
1705
|
+
|
1706
|
+
# Optional. Backend variable templates is only used when connector backend is
|
1707
|
+
# enabled. This is used to specify the variables required by the connector
|
1708
|
+
# backend service to talk to the actual application backend. This translates to
|
1709
|
+
# additional variable templates in the connection config.
|
1666
1710
|
# Corresponds to the JSON property `backendVariableTemplates`
|
1667
1711
|
# @return [Array<Google::Apis::ConnectorsV1::ConfigVariableTemplate>]
|
1668
1712
|
attr_accessor :backend_variable_templates
|
@@ -1672,14 +1716,15 @@ module Google
|
|
1672
1716
|
# @return [String]
|
1673
1717
|
attr_accessor :create_time
|
1674
1718
|
|
1675
|
-
# Optional. Destination config(s) for accessing connector facade
|
1676
|
-
# used only when enable_backend_destination_config is true.
|
1719
|
+
# Optional. Destination config(s) for accessing connector service (facade). This
|
1720
|
+
# is used only when enable_backend_destination_config is true.
|
1677
1721
|
# Corresponds to the JSON property `destinationConfigs`
|
1678
1722
|
# @return [Array<Google::Apis::ConnectorsV1::DestinationConfig>]
|
1679
1723
|
attr_accessor :destination_configs
|
1680
1724
|
|
1681
|
-
# Optional.
|
1682
|
-
# the destination
|
1725
|
+
# Optional. Indicates if an intermediatory connectorservice is used as backend.
|
1726
|
+
# When this is enabled, the connector destination and connector auth config are
|
1727
|
+
# required. For SDK based connectors, this is always enabled.
|
1683
1728
|
# Corresponds to the JSON property `enableBackendDestinationConfig`
|
1684
1729
|
# @return [Boolean]
|
1685
1730
|
attr_accessor :enable_backend_destination_config
|
@@ -1716,14 +1761,15 @@ module Google
|
|
1716
1761
|
# @return [String]
|
1717
1762
|
attr_accessor :service_account
|
1718
1763
|
|
1719
|
-
# Optional. Location of the custom connector spec.
|
1720
|
-
#
|
1721
|
-
# location like `gs
|
1764
|
+
# Optional. Location of the custom connector spec. This is only used for Open
|
1765
|
+
# API based custom connectors. The location can be either a public url like `
|
1766
|
+
# https://public-url.com/spec` Or a Google Cloud Storage location like `gs:///`.
|
1722
1767
|
# Corresponds to the JSON property `specLocation`
|
1723
1768
|
# @return [String]
|
1724
1769
|
attr_accessor :spec_location
|
1725
1770
|
|
1726
|
-
# Output only. Server URLs parsed from the spec.
|
1771
|
+
# Output only. Server URLs parsed from the Open API spec. This is only used for
|
1772
|
+
# Open API based custom connectors.
|
1727
1773
|
# Corresponds to the JSON property `specServerUrls`
|
1728
1774
|
# @return [Array<String>]
|
1729
1775
|
attr_accessor :spec_server_urls
|
@@ -1744,7 +1790,10 @@ module Google
|
|
1744
1790
|
|
1745
1791
|
# Update properties of this object
|
1746
1792
|
def update!(**args)
|
1793
|
+
@async_operations_support = args[:async_operations_support] if args.key?(:async_operations_support)
|
1747
1794
|
@auth_config = args[:auth_config] if args.key?(:auth_config)
|
1795
|
+
@auth_config_templates = args[:auth_config_templates] if args.key?(:auth_config_templates)
|
1796
|
+
@auth_override_support = args[:auth_override_support] if args.key?(:auth_override_support)
|
1748
1797
|
@backend_variable_templates = args[:backend_variable_templates] if args.key?(:backend_variable_templates)
|
1749
1798
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1750
1799
|
@destination_configs = args[:destination_configs] if args.key?(:destination_configs)
|
@@ -2046,6 +2095,32 @@ module Google
|
|
2046
2095
|
end
|
2047
2096
|
end
|
2048
2097
|
|
2098
|
+
# EUASecret provides a reference to entries in Secret Manager.
|
2099
|
+
class EuaSecret
|
2100
|
+
include Google::Apis::Core::Hashable
|
2101
|
+
|
2102
|
+
# Optional. The plain string value of the secret.
|
2103
|
+
# Corresponds to the JSON property `secretValue`
|
2104
|
+
# @return [String]
|
2105
|
+
attr_accessor :secret_value
|
2106
|
+
|
2107
|
+
# Optional. The resource name of the secret version in the format, format as: `
|
2108
|
+
# projects/*/secrets/*/versions/*`.
|
2109
|
+
# Corresponds to the JSON property `secretVersion`
|
2110
|
+
# @return [String]
|
2111
|
+
attr_accessor :secret_version
|
2112
|
+
|
2113
|
+
def initialize(**args)
|
2114
|
+
update!(**args)
|
2115
|
+
end
|
2116
|
+
|
2117
|
+
# Update properties of this object
|
2118
|
+
def update!(**args)
|
2119
|
+
@secret_value = args[:secret_value] if args.key?(:secret_value)
|
2120
|
+
@secret_version = args[:secret_version] if args.key?(:secret_version)
|
2121
|
+
end
|
2122
|
+
end
|
2123
|
+
|
2049
2124
|
# Egress control config for connector runtime. These configurations define the
|
2050
2125
|
# rules to identify which outbound domains/hosts needs to be whitelisted. It may
|
2051
2126
|
# be a static information for a particular connector version or it is derived
|
@@ -2123,9 +2198,9 @@ module Google
|
|
2123
2198
|
class EncryptionKey
|
2124
2199
|
include Google::Apis::Core::Hashable
|
2125
2200
|
|
2126
|
-
# The [KMS key name] with which the content of the Operation is
|
2127
|
-
# expected format: `projects/*/locations/*/keyRings/*/cryptoKeys
|
2128
|
-
# empty string if google managed.
|
2201
|
+
# Optional. The [KMS key name] with which the content of the Operation is
|
2202
|
+
# encrypted. The expected format: `projects/*/locations/*/keyRings/*/cryptoKeys/*
|
2203
|
+
# `. Will be empty string if google managed.
|
2129
2204
|
# Corresponds to the JSON property `kmsKeyName`
|
2130
2205
|
# @return [String]
|
2131
2206
|
attr_accessor :kms_key_name
|
@@ -2150,12 +2225,12 @@ module Google
|
|
2150
2225
|
class EndPoint
|
2151
2226
|
include Google::Apis::Core::Hashable
|
2152
2227
|
|
2153
|
-
# The URI of the Endpoint.
|
2228
|
+
# Optional. The URI of the Endpoint.
|
2154
2229
|
# Corresponds to the JSON property `endpointUri`
|
2155
2230
|
# @return [String]
|
2156
2231
|
attr_accessor :endpoint_uri
|
2157
2232
|
|
2158
|
-
# List of Header to be added to the Endpoint.
|
2233
|
+
# Optional. List of Header to be added to the Endpoint.
|
2159
2234
|
# Corresponds to the JSON property `headers`
|
2160
2235
|
# @return [Array<Google::Apis::ConnectorsV1::Header>]
|
2161
2236
|
attr_accessor :headers
|
@@ -2214,6 +2289,11 @@ module Google
|
|
2214
2289
|
# @return [Google::Apis::ConnectorsV1::EndUserAuthenticationNotifyEndpointDestination]
|
2215
2290
|
attr_accessor :notify_endpoint_destination
|
2216
2291
|
|
2292
|
+
# Optional. Roles for the EndUserAuthentication.
|
2293
|
+
# Corresponds to the JSON property `roles`
|
2294
|
+
# @return [Array<String>]
|
2295
|
+
attr_accessor :roles
|
2296
|
+
|
2217
2297
|
# EndUserAuthentication Status denotes the status of the EndUserAuthentication
|
2218
2298
|
# resource.
|
2219
2299
|
# Corresponds to the JSON property `status`
|
@@ -2225,11 +2305,6 @@ module Google
|
|
2225
2305
|
# @return [String]
|
2226
2306
|
attr_accessor :update_time
|
2227
2307
|
|
2228
|
-
# Optional. Deprecated: The email of the user.
|
2229
|
-
# Corresponds to the JSON property `userEmail`
|
2230
|
-
# @return [String]
|
2231
|
-
attr_accessor :user_email
|
2232
|
-
|
2233
2308
|
# Optional. The user id of the user.
|
2234
2309
|
# Corresponds to the JSON property `userId`
|
2235
2310
|
# @return [String]
|
@@ -2248,9 +2323,9 @@ module Google
|
|
2248
2323
|
@labels = args[:labels] if args.key?(:labels)
|
2249
2324
|
@name = args[:name] if args.key?(:name)
|
2250
2325
|
@notify_endpoint_destination = args[:notify_endpoint_destination] if args.key?(:notify_endpoint_destination)
|
2326
|
+
@roles = args[:roles] if args.key?(:roles)
|
2251
2327
|
@status = args[:status] if args.key?(:status)
|
2252
2328
|
@update_time = args[:update_time] if args.key?(:update_time)
|
2253
|
-
@user_email = args[:user_email] if args.key?(:user_email)
|
2254
2329
|
@user_id = args[:user_id] if args.key?(:user_id)
|
2255
2330
|
end
|
2256
2331
|
end
|
@@ -2349,9 +2424,9 @@ module Google
|
|
2349
2424
|
# @return [String]
|
2350
2425
|
attr_accessor :client_id
|
2351
2426
|
|
2352
|
-
#
|
2427
|
+
# EUASecret provides a reference to entries in Secret Manager.
|
2353
2428
|
# Corresponds to the JSON property `clientSecret`
|
2354
|
-
# @return [
|
2429
|
+
# @return [Google::Apis::ConnectorsV1::EuaSecret]
|
2355
2430
|
attr_accessor :client_secret
|
2356
2431
|
|
2357
2432
|
# Optional. Whether to enable PKCE when the user performs the auth code flow.
|
@@ -2449,9 +2524,9 @@ module Google
|
|
2449
2524
|
# @return [String]
|
2450
2525
|
attr_accessor :client_id
|
2451
2526
|
|
2452
|
-
#
|
2527
|
+
# EUASecret provides a reference to entries in Secret Manager.
|
2453
2528
|
# Corresponds to the JSON property `clientSecret`
|
2454
|
-
# @return [
|
2529
|
+
# @return [Google::Apis::ConnectorsV1::EuaSecret]
|
2455
2530
|
attr_accessor :client_secret
|
2456
2531
|
|
2457
2532
|
def initialize(**args)
|
@@ -2471,12 +2546,9 @@ module Google
|
|
2471
2546
|
class EndUserAuthenticationConfigOauth2JwtBearer
|
2472
2547
|
include Google::Apis::Core::Hashable
|
2473
2548
|
|
2474
|
-
#
|
2475
|
-
# associated with the Client Certificate. This private key will be used to sign
|
2476
|
-
# JWTs used for the jwt-bearer authorization grant. Specified in the form as: `
|
2477
|
-
# projects/*/strings/*/versions/*`.
|
2549
|
+
# EUASecret provides a reference to entries in Secret Manager.
|
2478
2550
|
# Corresponds to the JSON property `clientKey`
|
2479
|
-
# @return [
|
2551
|
+
# @return [Google::Apis::ConnectorsV1::EuaSecret]
|
2480
2552
|
attr_accessor :client_key
|
2481
2553
|
|
2482
2554
|
# JWT claims used for the jwt-bearer authorization grant.
|
@@ -2535,14 +2607,14 @@ module Google
|
|
2535
2607
|
# @return [String]
|
2536
2608
|
attr_accessor :cert_type
|
2537
2609
|
|
2538
|
-
#
|
2610
|
+
# EUASecret provides a reference to entries in Secret Manager.
|
2539
2611
|
# Corresponds to the JSON property `sshClientCert`
|
2540
|
-
# @return [
|
2612
|
+
# @return [Google::Apis::ConnectorsV1::EuaSecret]
|
2541
2613
|
attr_accessor :ssh_client_cert
|
2542
2614
|
|
2543
|
-
#
|
2615
|
+
# EUASecret provides a reference to entries in Secret Manager.
|
2544
2616
|
# Corresponds to the JSON property `sshClientCertPass`
|
2545
|
-
# @return [
|
2617
|
+
# @return [Google::Apis::ConnectorsV1::EuaSecret]
|
2546
2618
|
attr_accessor :ssh_client_cert_pass
|
2547
2619
|
|
2548
2620
|
# The user account used to authenticate.
|
@@ -2567,9 +2639,9 @@ module Google
|
|
2567
2639
|
class EndUserAuthenticationConfigUserPassword
|
2568
2640
|
include Google::Apis::Core::Hashable
|
2569
2641
|
|
2570
|
-
#
|
2642
|
+
# EUASecret provides a reference to entries in Secret Manager.
|
2571
2643
|
# Corresponds to the JSON property `password`
|
2572
|
-
# @return [
|
2644
|
+
# @return [Google::Apis::ConnectorsV1::EuaSecret]
|
2573
2645
|
attr_accessor :password
|
2574
2646
|
|
2575
2647
|
# Username.
|
@@ -2609,9 +2681,9 @@ module Google
|
|
2609
2681
|
# @return [String]
|
2610
2682
|
attr_accessor :key
|
2611
2683
|
|
2612
|
-
#
|
2684
|
+
# EUASecret provides a reference to entries in Secret Manager.
|
2613
2685
|
# Corresponds to the JSON property `secretValue`
|
2614
|
-
# @return [Google::Apis::ConnectorsV1::
|
2686
|
+
# @return [Google::Apis::ConnectorsV1::EuaSecret]
|
2615
2687
|
attr_accessor :secret_value
|
2616
2688
|
|
2617
2689
|
# Value is a string.
|
@@ -2884,8 +2956,8 @@ module Google
|
|
2884
2956
|
# @return [Google::Apis::ConnectorsV1::Jms]
|
2885
2957
|
attr_accessor :jms
|
2886
2958
|
|
2887
|
-
# Required. Resource name of the EventSubscription. Format: projects
|
2888
|
-
# locations/`location`/connections/`connection`/eventSubscriptions/`
|
2959
|
+
# Required. Identifier. Resource name of the EventSubscription. Format: projects/
|
2960
|
+
# `project`/locations/`location`/connections/`connection`/eventSubscriptions/`
|
2889
2961
|
# event_subscription`
|
2890
2962
|
# Corresponds to the JSON property `name`
|
2891
2963
|
# @return [String]
|
@@ -2949,12 +3021,12 @@ module Google
|
|
2949
3021
|
# @return [Google::Apis::ConnectorsV1::PubSub]
|
2950
3022
|
attr_accessor :pubsub
|
2951
3023
|
|
2952
|
-
# Service account needed for runtime plane to trigger IP workflow.
|
3024
|
+
# Optional. Service account needed for runtime plane to trigger IP workflow.
|
2953
3025
|
# Corresponds to the JSON property `serviceAccount`
|
2954
3026
|
# @return [String]
|
2955
3027
|
attr_accessor :service_account
|
2956
3028
|
|
2957
|
-
# type of the destination
|
3029
|
+
# Optional. type of the destination
|
2958
3030
|
# Corresponds to the JSON property `type`
|
2959
3031
|
# @return [String]
|
2960
3032
|
attr_accessor :type
|
@@ -3648,12 +3720,12 @@ module Google
|
|
3648
3720
|
class Header
|
3649
3721
|
include Google::Apis::Core::Hashable
|
3650
3722
|
|
3651
|
-
# Key of Header.
|
3723
|
+
# Optional. Key of Header.
|
3652
3724
|
# Corresponds to the JSON property `key`
|
3653
3725
|
# @return [String]
|
3654
3726
|
attr_accessor :key
|
3655
3727
|
|
3656
|
-
# Value of Header.
|
3728
|
+
# Optional. Value of Header.
|
3657
3729
|
# Corresponds to the JSON property `value`
|
3658
3730
|
# @return [String]
|
3659
3731
|
attr_accessor :value
|
@@ -3748,6 +3820,17 @@ module Google
|
|
3748
3820
|
# @return [String]
|
3749
3821
|
attr_accessor :consumer_defined_name
|
3750
3822
|
|
3823
|
+
# Optional. The consumer_project_number associated with this Apigee instance.
|
3824
|
+
# This field is added specifically to support Apigee integration with SLM
|
3825
|
+
# Rollout and UMM. It represents the numerical project ID of the GCP project
|
3826
|
+
# that consumes this Apigee instance. It is used for SLM rollout notifications
|
3827
|
+
# and UMM integration, enabling proper mapping to customer projects and log
|
3828
|
+
# delivery for Apigee instances. This field complements consumer_project_id and
|
3829
|
+
# may be used for specific Apigee scenarios where the numerical ID is required.
|
3830
|
+
# Corresponds to the JSON property `consumerProjectNumber`
|
3831
|
+
# @return [String]
|
3832
|
+
attr_accessor :consumer_project_number
|
3833
|
+
|
3751
3834
|
# Output only. Timestamp when the resource was created.
|
3752
3835
|
# Corresponds to the JSON property `createTime`
|
3753
3836
|
# @return [String]
|
@@ -3864,6 +3947,7 @@ module Google
|
|
3864
3947
|
# Update properties of this object
|
3865
3948
|
def update!(**args)
|
3866
3949
|
@consumer_defined_name = args[:consumer_defined_name] if args.key?(:consumer_defined_name)
|
3950
|
+
@consumer_project_number = args[:consumer_project_number] if args.key?(:consumer_project_number)
|
3867
3951
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3868
3952
|
@instance_type = args[:instance_type] if args.key?(:instance_type)
|
3869
3953
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -4015,17 +4099,17 @@ module Google
|
|
4015
4099
|
class JwtClaims
|
4016
4100
|
include Google::Apis::Core::Hashable
|
4017
4101
|
|
4018
|
-
# Value for the "aud" claim.
|
4102
|
+
# Optional. Value for the "aud" claim.
|
4019
4103
|
# Corresponds to the JSON property `audience`
|
4020
4104
|
# @return [String]
|
4021
4105
|
attr_accessor :audience
|
4022
4106
|
|
4023
|
-
# Value for the "iss" claim.
|
4107
|
+
# Optional. Value for the "iss" claim.
|
4024
4108
|
# Corresponds to the JSON property `issuer`
|
4025
4109
|
# @return [String]
|
4026
4110
|
attr_accessor :issuer
|
4027
4111
|
|
4028
|
-
# Value for the "sub" claim.
|
4112
|
+
# Optional. Value for the "sub" claim.
|
4029
4113
|
# Corresponds to the JSON property `subject`
|
4030
4114
|
# @return [String]
|
4031
4115
|
attr_accessor :subject
|
@@ -4611,13 +4695,13 @@ module Google
|
|
4611
4695
|
class LockConfig
|
4612
4696
|
include Google::Apis::Core::Hashable
|
4613
4697
|
|
4614
|
-
# Indicates whether or not the connection is locked.
|
4698
|
+
# Optional. Indicates whether or not the connection is locked.
|
4615
4699
|
# Corresponds to the JSON property `locked`
|
4616
4700
|
# @return [Boolean]
|
4617
4701
|
attr_accessor :locked
|
4618
4702
|
alias_method :locked?, :locked
|
4619
4703
|
|
4620
|
-
# Describes why a connection is locked.
|
4704
|
+
# Optional. Describes why a connection is locked.
|
4621
4705
|
# Corresponds to the JSON property `reason`
|
4622
4706
|
# @return [String]
|
4623
4707
|
attr_accessor :reason
|
@@ -5045,12 +5129,12 @@ module Google
|
|
5045
5129
|
class NodeConfig
|
5046
5130
|
include Google::Apis::Core::Hashable
|
5047
5131
|
|
5048
|
-
# Maximum number of nodes in the runtime nodes.
|
5132
|
+
# Optional. Maximum number of nodes in the runtime nodes.
|
5049
5133
|
# Corresponds to the JSON property `maxNodeCount`
|
5050
5134
|
# @return [Fixnum]
|
5051
5135
|
attr_accessor :max_node_count
|
5052
5136
|
|
5053
|
-
# Minimum number of nodes in the runtime nodes.
|
5137
|
+
# Optional. Minimum number of nodes in the runtime nodes.
|
5054
5138
|
# Corresponds to the JSON property `minNodeCount`
|
5055
5139
|
# @return [Fixnum]
|
5056
5140
|
attr_accessor :min_node_count
|
@@ -5123,9 +5207,9 @@ module Google
|
|
5123
5207
|
class OAuthTokenData
|
5124
5208
|
include Google::Apis::Core::Hashable
|
5125
5209
|
|
5126
|
-
#
|
5210
|
+
# EUASecret provides a reference to entries in Secret Manager.
|
5127
5211
|
# Corresponds to the JSON property `accessToken`
|
5128
|
-
# @return [
|
5212
|
+
# @return [Google::Apis::ConnectorsV1::EuaSecret]
|
5129
5213
|
attr_accessor :access_token
|
5130
5214
|
|
5131
5215
|
# Optional. Timestamp when the access token was created.
|
@@ -5138,9 +5222,9 @@ module Google
|
|
5138
5222
|
# @return [String]
|
5139
5223
|
attr_accessor :expiry
|
5140
5224
|
|
5141
|
-
#
|
5225
|
+
# EUASecret provides a reference to entries in Secret Manager.
|
5142
5226
|
# Corresponds to the JSON property `refreshToken`
|
5143
|
-
# @return [
|
5227
|
+
# @return [Google::Apis::ConnectorsV1::EuaSecret]
|
5144
5228
|
attr_accessor :refresh_token
|
5145
5229
|
|
5146
5230
|
def initialize(**args)
|
@@ -5161,17 +5245,17 @@ module Google
|
|
5161
5245
|
class Oauth2AuthCodeFlow
|
5162
5246
|
include Google::Apis::Core::Hashable
|
5163
5247
|
|
5164
|
-
# Authorization code to be exchanged for access and refresh tokens.
|
5248
|
+
# Optional. Authorization code to be exchanged for access and refresh tokens.
|
5165
5249
|
# Corresponds to the JSON property `authCode`
|
5166
5250
|
# @return [String]
|
5167
5251
|
attr_accessor :auth_code
|
5168
5252
|
|
5169
|
-
# Auth URL for Authorization Code Flow
|
5253
|
+
# Optional. Auth URL for Authorization Code Flow
|
5170
5254
|
# Corresponds to the JSON property `authUri`
|
5171
5255
|
# @return [String]
|
5172
5256
|
attr_accessor :auth_uri
|
5173
5257
|
|
5174
|
-
# Client ID for user-provided OAuth app.
|
5258
|
+
# Optional. Client ID for user-provided OAuth app.
|
5175
5259
|
# Corresponds to the JSON property `clientId`
|
5176
5260
|
# @return [String]
|
5177
5261
|
attr_accessor :client_id
|
@@ -5181,23 +5265,24 @@ module Google
|
|
5181
5265
|
# @return [Google::Apis::ConnectorsV1::Secret]
|
5182
5266
|
attr_accessor :client_secret
|
5183
5267
|
|
5184
|
-
# Whether to enable PKCE when the user performs the auth code flow.
|
5268
|
+
# Optional. Whether to enable PKCE when the user performs the auth code flow.
|
5185
5269
|
# Corresponds to the JSON property `enablePkce`
|
5186
5270
|
# @return [Boolean]
|
5187
5271
|
attr_accessor :enable_pkce
|
5188
5272
|
alias_method :enable_pkce?, :enable_pkce
|
5189
5273
|
|
5190
|
-
# PKCE verifier to be used during the auth code exchange.
|
5274
|
+
# Optional. PKCE verifier to be used during the auth code exchange.
|
5191
5275
|
# Corresponds to the JSON property `pkceVerifier`
|
5192
5276
|
# @return [String]
|
5193
5277
|
attr_accessor :pkce_verifier
|
5194
5278
|
|
5195
|
-
# Redirect URI to be provided during the auth code exchange.
|
5279
|
+
# Optional. Redirect URI to be provided during the auth code exchange.
|
5196
5280
|
# Corresponds to the JSON property `redirectUri`
|
5197
5281
|
# @return [String]
|
5198
5282
|
attr_accessor :redirect_uri
|
5199
5283
|
|
5200
|
-
# Scopes the connection will request when the user performs the auth
|
5284
|
+
# Optional. Scopes the connection will request when the user performs the auth
|
5285
|
+
# code flow.
|
5201
5286
|
# Corresponds to the JSON property `scopes`
|
5202
5287
|
# @return [Array<String>]
|
5203
5288
|
attr_accessor :scopes
|
@@ -5258,7 +5343,7 @@ module Google
|
|
5258
5343
|
class Oauth2ClientCredentials
|
5259
5344
|
include Google::Apis::Core::Hashable
|
5260
5345
|
|
5261
|
-
# The client identifier.
|
5346
|
+
# Optional. The client identifier.
|
5262
5347
|
# Corresponds to the JSON property `clientId`
|
5263
5348
|
# @return [String]
|
5264
5349
|
attr_accessor :client_id
|
@@ -5676,6 +5761,44 @@ module Google
|
|
5676
5761
|
end
|
5677
5762
|
end
|
5678
5763
|
|
5764
|
+
# PriorityEntityType represents an entity type with its associated priority and
|
5765
|
+
# order.
|
5766
|
+
class PriorityEntityType
|
5767
|
+
include Google::Apis::Core::Hashable
|
5768
|
+
|
5769
|
+
# The description of the entity type.
|
5770
|
+
# Corresponds to the JSON property `description`
|
5771
|
+
# @return [String]
|
5772
|
+
attr_accessor :description
|
5773
|
+
|
5774
|
+
# The entity type.
|
5775
|
+
# Corresponds to the JSON property `id`
|
5776
|
+
# @return [String]
|
5777
|
+
attr_accessor :id
|
5778
|
+
|
5779
|
+
# The order of the entity type within its priority group.
|
5780
|
+
# Corresponds to the JSON property `order`
|
5781
|
+
# @return [Fixnum]
|
5782
|
+
attr_accessor :order
|
5783
|
+
|
5784
|
+
# The priority of the entity type, such as P0, P1, etc.
|
5785
|
+
# Corresponds to the JSON property `priority`
|
5786
|
+
# @return [String]
|
5787
|
+
attr_accessor :priority
|
5788
|
+
|
5789
|
+
def initialize(**args)
|
5790
|
+
update!(**args)
|
5791
|
+
end
|
5792
|
+
|
5793
|
+
# Update properties of this object
|
5794
|
+
def update!(**args)
|
5795
|
+
@description = args[:description] if args.key?(:description)
|
5796
|
+
@id = args[:id] if args.key?(:id)
|
5797
|
+
@order = args[:order] if args.key?(:order)
|
5798
|
+
@priority = args[:priority] if args.key?(:priority)
|
5799
|
+
end
|
5800
|
+
end
|
5801
|
+
|
5679
5802
|
# Provider indicates the owner who provides the connectors.
|
5680
5803
|
class Provider
|
5681
5804
|
include Google::Apis::Core::Hashable
|
@@ -6438,8 +6561,8 @@ module Google
|
|
6438
6561
|
class Secret
|
6439
6562
|
include Google::Apis::Core::Hashable
|
6440
6563
|
|
6441
|
-
# The resource name of the secret version in the format, format as: `
|
6442
|
-
# secrets/*/versions/*`.
|
6564
|
+
# Optional. The resource name of the secret version in the format, format as: `
|
6565
|
+
# projects/*/secrets/*/versions/*`.
|
6443
6566
|
# Corresponds to the JSON property `secretVersion`
|
6444
6567
|
# @return [String]
|
6445
6568
|
attr_accessor :secret_version
|
@@ -6642,7 +6765,7 @@ module Google
|
|
6642
6765
|
class SshPublicKey
|
6643
6766
|
include Google::Apis::Core::Hashable
|
6644
6767
|
|
6645
|
-
# Format of SSH Client cert.
|
6768
|
+
# Optional. Format of SSH Client cert.
|
6646
6769
|
# Corresponds to the JSON property `certType`
|
6647
6770
|
# @return [String]
|
6648
6771
|
attr_accessor :cert_type
|
@@ -6657,7 +6780,7 @@ module Google
|
|
6657
6780
|
# @return [Google::Apis::ConnectorsV1::Secret]
|
6658
6781
|
attr_accessor :ssh_client_cert_pass
|
6659
6782
|
|
6660
|
-
# The user account used to authenticate.
|
6783
|
+
# Optional. The user account used to authenticate.
|
6661
6784
|
# Corresponds to the JSON property `username`
|
6662
6785
|
# @return [String]
|
6663
6786
|
attr_accessor :username
|
@@ -6880,6 +7003,12 @@ module Google
|
|
6880
7003
|
attr_accessor :action_apis
|
6881
7004
|
alias_method :action_apis?, :action_apis
|
6882
7005
|
|
7006
|
+
# Specifies if the connector supports async long running operations.
|
7007
|
+
# Corresponds to the JSON property `asyncOperations`
|
7008
|
+
# @return [Boolean]
|
7009
|
+
attr_accessor :async_operations
|
7010
|
+
alias_method :async_operations?, :async_operations
|
7011
|
+
|
6883
7012
|
# Specifies if the connector supports entity apis like 'createEntity'.
|
6884
7013
|
# Corresponds to the JSON property `entityApis`
|
6885
7014
|
# @return [Boolean]
|
@@ -6899,6 +7028,7 @@ module Google
|
|
6899
7028
|
# Update properties of this object
|
6900
7029
|
def update!(**args)
|
6901
7030
|
@action_apis = args[:action_apis] if args.key?(:action_apis)
|
7031
|
+
@async_operations = args[:async_operations] if args.key?(:async_operations)
|
6902
7032
|
@entity_apis = args[:entity_apis] if args.key?(:entity_apis)
|
6903
7033
|
@sql_query = args[:sql_query] if args.key?(:sql_query)
|
6904
7034
|
end
|
@@ -7074,7 +7204,7 @@ module Google
|
|
7074
7204
|
# @return [Google::Apis::ConnectorsV1::Secret]
|
7075
7205
|
attr_accessor :password
|
7076
7206
|
|
7077
|
-
# Username.
|
7207
|
+
# Optional. Username.
|
7078
7208
|
# Corresponds to the JSON property `username`
|
7079
7209
|
# @return [String]
|
7080
7210
|
attr_accessor :username
|
@@ -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.72.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250507"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -214,6 +214,12 @@ module Google
|
|
214
214
|
include Google::Apis::Core::JsonObjectSupport
|
215
215
|
end
|
216
216
|
|
217
|
+
class EuaSecret
|
218
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
|
+
|
220
|
+
include Google::Apis::Core::JsonObjectSupport
|
221
|
+
end
|
222
|
+
|
217
223
|
class EgressControlConfig
|
218
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
225
|
|
@@ -748,6 +754,12 @@ module Google
|
|
748
754
|
include Google::Apis::Core::JsonObjectSupport
|
749
755
|
end
|
750
756
|
|
757
|
+
class PriorityEntityType
|
758
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
759
|
+
|
760
|
+
include Google::Apis::Core::JsonObjectSupport
|
761
|
+
end
|
762
|
+
|
751
763
|
class Provider
|
752
764
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
753
765
|
|
@@ -1217,11 +1229,14 @@ module Google
|
|
1217
1229
|
collection :destination_configs, as: 'destinationConfigs', class: Google::Apis::ConnectorsV1::DestinationConfig, decorator: Google::Apis::ConnectorsV1::DestinationConfig::Representation
|
1218
1230
|
|
1219
1231
|
property :envoy_image_location, as: 'envoyImageLocation'
|
1232
|
+
property :eua_oauth_auth_config, as: 'euaOauthAuthConfig', class: Google::Apis::ConnectorsV1::AuthConfig, decorator: Google::Apis::ConnectorsV1::AuthConfig::Representation
|
1233
|
+
|
1220
1234
|
property :eventing_config, as: 'eventingConfig', class: Google::Apis::ConnectorsV1::EventingConfig, decorator: Google::Apis::ConnectorsV1::EventingConfig::Representation
|
1221
1235
|
|
1222
1236
|
property :eventing_enablement_type, as: 'eventingEnablementType'
|
1223
1237
|
property :eventing_runtime_data, as: 'eventingRuntimeData', class: Google::Apis::ConnectorsV1::EventingRuntimeData, decorator: Google::Apis::ConnectorsV1::EventingRuntimeData::Representation
|
1224
1238
|
|
1239
|
+
property :fallback_on_admin_credentials, as: 'fallbackOnAdminCredentials'
|
1225
1240
|
property :host, as: 'host'
|
1226
1241
|
property :image_location, as: 'imageLocation'
|
1227
1242
|
property :is_trusted_tester, as: 'isTrustedTester'
|
@@ -1306,6 +1321,7 @@ module Google
|
|
1306
1321
|
property :max_instance_request_concurrency, as: 'maxInstanceRequestConcurrency'
|
1307
1322
|
property :migrate_deployment_model, as: 'migrateDeploymentModel'
|
1308
1323
|
property :migrate_tls, as: 'migrateTls'
|
1324
|
+
property :network_egress_mode, as: 'networkEgressMode'
|
1309
1325
|
property :provision_cloud_spanner, as: 'provisionCloudSpanner'
|
1310
1326
|
property :provision_memstore, as: 'provisionMemstore'
|
1311
1327
|
property :ratelimit_threshold, :numeric_string => true, as: 'ratelimitThreshold'
|
@@ -1335,12 +1351,13 @@ module Google
|
|
1335
1351
|
|
1336
1352
|
property :eventing_config_template, as: 'eventingConfigTemplate', class: Google::Apis::ConnectorsV1::EventingConfigTemplate, decorator: Google::Apis::ConnectorsV1::EventingConfigTemplate::Representation
|
1337
1353
|
|
1338
|
-
property :is_async_operations_supported, as: 'isAsyncOperationsSupported'
|
1339
1354
|
property :is_custom_actions_supported, as: 'isCustomActionsSupported'
|
1340
1355
|
property :is_custom_entities_supported, as: 'isCustomEntitiesSupported'
|
1341
1356
|
hash :labels, as: 'labels'
|
1342
1357
|
property :launch_stage, as: 'launchStage'
|
1343
1358
|
property :name, as: 'name'
|
1359
|
+
collection :priority_entity_types, as: 'priorityEntityTypes', class: Google::Apis::ConnectorsV1::PriorityEntityType, decorator: Google::Apis::ConnectorsV1::PriorityEntityType::Representation
|
1360
|
+
|
1344
1361
|
property :release_version, as: 'releaseVersion'
|
1345
1362
|
property :role_grant, as: 'roleGrant', class: Google::Apis::ConnectorsV1::RoleGrant, decorator: Google::Apis::ConnectorsV1::RoleGrant::Representation
|
1346
1363
|
|
@@ -1410,8 +1427,12 @@ module Google
|
|
1410
1427
|
class CustomConnectorVersion
|
1411
1428
|
# @private
|
1412
1429
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1430
|
+
property :async_operations_support, as: 'asyncOperationsSupport'
|
1413
1431
|
property :auth_config, as: 'authConfig', class: Google::Apis::ConnectorsV1::AuthConfig, decorator: Google::Apis::ConnectorsV1::AuthConfig::Representation
|
1414
1432
|
|
1433
|
+
collection :auth_config_templates, as: 'authConfigTemplates', class: Google::Apis::ConnectorsV1::AuthConfigTemplate, decorator: Google::Apis::ConnectorsV1::AuthConfigTemplate::Representation
|
1434
|
+
|
1435
|
+
property :auth_override_support, as: 'authOverrideSupport'
|
1415
1436
|
collection :backend_variable_templates, as: 'backendVariableTemplates', class: Google::Apis::ConnectorsV1::ConfigVariableTemplate, decorator: Google::Apis::ConnectorsV1::ConfigVariableTemplate::Representation
|
1416
1437
|
|
1417
1438
|
property :create_time, as: 'createTime'
|
@@ -1510,6 +1531,14 @@ module Google
|
|
1510
1531
|
end
|
1511
1532
|
end
|
1512
1533
|
|
1534
|
+
class EuaSecret
|
1535
|
+
# @private
|
1536
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1537
|
+
property :secret_value, as: 'secretValue'
|
1538
|
+
property :secret_version, as: 'secretVersion'
|
1539
|
+
end
|
1540
|
+
end
|
1541
|
+
|
1513
1542
|
class EgressControlConfig
|
1514
1543
|
# @private
|
1515
1544
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1564,10 +1593,10 @@ module Google
|
|
1564
1593
|
property :name, as: 'name'
|
1565
1594
|
property :notify_endpoint_destination, as: 'notifyEndpointDestination', class: Google::Apis::ConnectorsV1::EndUserAuthenticationNotifyEndpointDestination, decorator: Google::Apis::ConnectorsV1::EndUserAuthenticationNotifyEndpointDestination::Representation
|
1566
1595
|
|
1596
|
+
collection :roles, as: 'roles'
|
1567
1597
|
property :status, as: 'status', class: Google::Apis::ConnectorsV1::EndUserAuthenticationEndUserAuthenticationStatus, decorator: Google::Apis::ConnectorsV1::EndUserAuthenticationEndUserAuthenticationStatus::Representation
|
1568
1598
|
|
1569
1599
|
property :update_time, as: 'updateTime'
|
1570
|
-
property :user_email, as: 'userEmail'
|
1571
1600
|
property :user_id, as: 'userId'
|
1572
1601
|
end
|
1573
1602
|
end
|
@@ -1600,7 +1629,8 @@ module Google
|
|
1600
1629
|
property :auth_code, as: 'authCode'
|
1601
1630
|
property :auth_uri, as: 'authUri'
|
1602
1631
|
property :client_id, as: 'clientId'
|
1603
|
-
property :client_secret, as: 'clientSecret'
|
1632
|
+
property :client_secret, as: 'clientSecret', class: Google::Apis::ConnectorsV1::EuaSecret, decorator: Google::Apis::ConnectorsV1::EuaSecret::Representation
|
1633
|
+
|
1604
1634
|
property :enable_pkce, as: 'enablePkce'
|
1605
1635
|
property :oauth_token_data, as: 'oauthTokenData', class: Google::Apis::ConnectorsV1::OAuthTokenData, decorator: Google::Apis::ConnectorsV1::OAuthTokenData::Representation
|
1606
1636
|
|
@@ -1625,14 +1655,16 @@ module Google
|
|
1625
1655
|
# @private
|
1626
1656
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1627
1657
|
property :client_id, as: 'clientId'
|
1628
|
-
property :client_secret, as: 'clientSecret'
|
1658
|
+
property :client_secret, as: 'clientSecret', class: Google::Apis::ConnectorsV1::EuaSecret, decorator: Google::Apis::ConnectorsV1::EuaSecret::Representation
|
1659
|
+
|
1629
1660
|
end
|
1630
1661
|
end
|
1631
1662
|
|
1632
1663
|
class EndUserAuthenticationConfigOauth2JwtBearer
|
1633
1664
|
# @private
|
1634
1665
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1635
|
-
property :client_key, as: 'clientKey'
|
1666
|
+
property :client_key, as: 'clientKey', class: Google::Apis::ConnectorsV1::EuaSecret, decorator: Google::Apis::ConnectorsV1::EuaSecret::Representation
|
1667
|
+
|
1636
1668
|
property :jwt_claims, as: 'jwtClaims', class: Google::Apis::ConnectorsV1::EndUserAuthenticationConfigOauth2JwtBearerJwtClaims, decorator: Google::Apis::ConnectorsV1::EndUserAuthenticationConfigOauth2JwtBearerJwtClaims::Representation
|
1637
1669
|
|
1638
1670
|
end
|
@@ -1651,8 +1683,10 @@ module Google
|
|
1651
1683
|
# @private
|
1652
1684
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1653
1685
|
property :cert_type, as: 'certType'
|
1654
|
-
property :ssh_client_cert, as: 'sshClientCert'
|
1655
|
-
|
1686
|
+
property :ssh_client_cert, as: 'sshClientCert', class: Google::Apis::ConnectorsV1::EuaSecret, decorator: Google::Apis::ConnectorsV1::EuaSecret::Representation
|
1687
|
+
|
1688
|
+
property :ssh_client_cert_pass, as: 'sshClientCertPass', class: Google::Apis::ConnectorsV1::EuaSecret, decorator: Google::Apis::ConnectorsV1::EuaSecret::Representation
|
1689
|
+
|
1656
1690
|
property :username, as: 'username'
|
1657
1691
|
end
|
1658
1692
|
end
|
@@ -1660,7 +1694,8 @@ module Google
|
|
1660
1694
|
class EndUserAuthenticationConfigUserPassword
|
1661
1695
|
# @private
|
1662
1696
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1663
|
-
property :password, as: 'password'
|
1697
|
+
property :password, as: 'password', class: Google::Apis::ConnectorsV1::EuaSecret, decorator: Google::Apis::ConnectorsV1::EuaSecret::Representation
|
1698
|
+
|
1664
1699
|
property :username, as: 'username'
|
1665
1700
|
end
|
1666
1701
|
end
|
@@ -1671,7 +1706,7 @@ module Google
|
|
1671
1706
|
property :bool_value, as: 'boolValue'
|
1672
1707
|
property :int_value, :numeric_string => true, as: 'intValue'
|
1673
1708
|
property :key, as: 'key'
|
1674
|
-
property :secret_value, as: 'secretValue', class: Google::Apis::ConnectorsV1::
|
1709
|
+
property :secret_value, as: 'secretValue', class: Google::Apis::ConnectorsV1::EuaSecret, decorator: Google::Apis::ConnectorsV1::EuaSecret::Representation
|
1675
1710
|
|
1676
1711
|
property :string_value, as: 'stringValue'
|
1677
1712
|
end
|
@@ -1981,6 +2016,7 @@ module Google
|
|
1981
2016
|
# @private
|
1982
2017
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1983
2018
|
property :consumer_defined_name, as: 'consumerDefinedName'
|
2019
|
+
property :consumer_project_number, as: 'consumerProjectNumber'
|
1984
2020
|
property :create_time, as: 'createTime'
|
1985
2021
|
property :instance_type, as: 'instanceType'
|
1986
2022
|
hash :labels, as: 'labels'
|
@@ -2380,10 +2416,12 @@ module Google
|
|
2380
2416
|
class OAuthTokenData
|
2381
2417
|
# @private
|
2382
2418
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2383
|
-
property :access_token, as: 'accessToken'
|
2419
|
+
property :access_token, as: 'accessToken', class: Google::Apis::ConnectorsV1::EuaSecret, decorator: Google::Apis::ConnectorsV1::EuaSecret::Representation
|
2420
|
+
|
2384
2421
|
property :create_time, as: 'createTime'
|
2385
2422
|
property :expiry, as: 'expiry'
|
2386
|
-
property :refresh_token, as: 'refreshToken'
|
2423
|
+
property :refresh_token, as: 'refreshToken', class: Google::Apis::ConnectorsV1::EuaSecret, decorator: Google::Apis::ConnectorsV1::EuaSecret::Representation
|
2424
|
+
|
2387
2425
|
end
|
2388
2426
|
end
|
2389
2427
|
|
@@ -2498,6 +2536,16 @@ module Google
|
|
2498
2536
|
end
|
2499
2537
|
end
|
2500
2538
|
|
2539
|
+
class PriorityEntityType
|
2540
|
+
# @private
|
2541
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2542
|
+
property :description, as: 'description'
|
2543
|
+
property :id, as: 'id'
|
2544
|
+
property :order, as: 'order'
|
2545
|
+
property :priority, as: 'priority'
|
2546
|
+
end
|
2547
|
+
end
|
2548
|
+
|
2501
2549
|
class Provider
|
2502
2550
|
# @private
|
2503
2551
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2841,6 +2889,7 @@ module Google
|
|
2841
2889
|
# @private
|
2842
2890
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2843
2891
|
property :action_apis, as: 'actionApis'
|
2892
|
+
property :async_operations, as: 'asyncOperations'
|
2844
2893
|
property :entity_apis, as: 'entityApis'
|
2845
2894
|
property :sql_query, as: 'sqlQuery'
|
2846
2895
|
end
|
@@ -493,8 +493,11 @@ module Google
|
|
493
493
|
# locations/`location`/connections/`connection`
|
494
494
|
# @param [Google::Apis::ConnectorsV1::Connection] connection_object
|
495
495
|
# @param [String] update_mask
|
496
|
-
# Required.
|
497
|
-
# connection
|
496
|
+
# Required. The list of fields to update. Fields are specified relative to the
|
497
|
+
# connection. A field will be overwritten if it is in the mask. The field mask
|
498
|
+
# must not be empty, and it must not contain fields that are immutable or only
|
499
|
+
# set by the server. You can modify only the fields listed below. To lock/unlock
|
500
|
+
# a connection: * `lock_config` To suspend/resume a connection: * `suspended` To
|
498
501
|
# update the connection details: * `description` * `labels` * `connector_version`
|
499
502
|
# * `config_variables` * `auth_config` * `destination_configs` * `node_config` *
|
500
503
|
# `log_config` * `ssl_config` * `eventing_enablement_type` * `eventing_config` *
|
@@ -1197,8 +1200,8 @@ module Google
|
|
1197
1200
|
|
1198
1201
|
# Updates the parameters of a single EventSubscription.
|
1199
1202
|
# @param [String] name
|
1200
|
-
# Required. Resource name of the EventSubscription. Format: projects
|
1201
|
-
# locations/`location`/connections/`connection`/eventSubscriptions/`
|
1203
|
+
# Required. Identifier. Resource name of the EventSubscription. Format: projects/
|
1204
|
+
# `project`/locations/`location`/connections/`connection`/eventSubscriptions/`
|
1202
1205
|
# event_subscription`
|
1203
1206
|
# @param [Google::Apis::ConnectorsV1::EventSubscription] event_subscription_object
|
1204
1207
|
# @param [String] update_mask
|
@@ -2711,6 +2714,9 @@ module Google
|
|
2711
2714
|
# Required. Resource name of the form: `projects/*/locations/*/providers/*/
|
2712
2715
|
# connectors/*/versions/*` Only global location is supported for
|
2713
2716
|
# ConnectorVersion resource.
|
2717
|
+
# @param [String] schema_view
|
2718
|
+
# Optional. Enum to control whether schema enrichment related fields should be
|
2719
|
+
# included in the response.
|
2714
2720
|
# @param [String] view
|
2715
2721
|
# Specifies which fields of the ConnectorVersion are returned in the response.
|
2716
2722
|
# Defaults to `CUSTOMER` view.
|
@@ -2731,11 +2737,12 @@ module Google
|
|
2731
2737
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2732
2738
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2733
2739
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2734
|
-
def get_project_location_provider_connector_version(name, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2740
|
+
def get_project_location_provider_connector_version(name, schema_view: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2735
2741
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
2736
2742
|
command.response_representation = Google::Apis::ConnectorsV1::ConnectorVersion::Representation
|
2737
2743
|
command.response_class = Google::Apis::ConnectorsV1::ConnectorVersion
|
2738
2744
|
command.params['name'] = name unless name.nil?
|
2745
|
+
command.query['schemaView'] = schema_view unless schema_view.nil?
|
2739
2746
|
command.query['view'] = view unless view.nil?
|
2740
2747
|
command.query['fields'] = fields unless fields.nil?
|
2741
2748
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
@@ -2751,6 +2758,9 @@ module Google
|
|
2751
2758
|
# Page size.
|
2752
2759
|
# @param [String] page_token
|
2753
2760
|
# Page token.
|
2761
|
+
# @param [String] schema_view
|
2762
|
+
# Optional. Enum to control whether schema enrichment related fields should be
|
2763
|
+
# included in the response.
|
2754
2764
|
# @param [String] view
|
2755
2765
|
# Specifies which fields of the ConnectorVersion are returned in the response.
|
2756
2766
|
# Defaults to `BASIC` view.
|
@@ -2771,13 +2781,14 @@ module Google
|
|
2771
2781
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2772
2782
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2773
2783
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2774
|
-
def list_project_location_provider_connector_versions(parent, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2784
|
+
def list_project_location_provider_connector_versions(parent, page_size: nil, page_token: nil, schema_view: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2775
2785
|
command = make_simple_command(:get, 'v1/{+parent}/versions', options)
|
2776
2786
|
command.response_representation = Google::Apis::ConnectorsV1::ListConnectorVersionsResponse::Representation
|
2777
2787
|
command.response_class = Google::Apis::ConnectorsV1::ListConnectorVersionsResponse
|
2778
2788
|
command.params['parent'] = parent unless parent.nil?
|
2779
2789
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2780
2790
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2791
|
+
command.query['schemaView'] = schema_view unless schema_view.nil?
|
2781
2792
|
command.query['view'] = view unless view.nil?
|
2782
2793
|
command.query['fields'] = fields unless fields.nil?
|
2783
2794
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.72.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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-connectors_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.72.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
67
67
|
- - ">="
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '
|
69
|
+
version: '3.1'
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
72
|
- - ">="
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.8
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Connectors API V1
|
79
79
|
test_files: []
|