google-apis-integrations_v1 0.13.0 → 0.14.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: 5e29351aaab7fa5e91f86818fb0aeed9a6c0b1764fec05ccf2018046d0d30138
|
4
|
+
data.tar.gz: 9b5b2b8eeda32587457506d63a3441fe6a4dc129c5c647714413d4bfffe28d27
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3ad52f961ee98c5696723fc69ba9f8e0ef15c77bba1c46ceaa1dcf6c53cd251b9d5b86c8811645d3cdd6efbf83afe3f0394e223cca546d3569911244bfcde6a
|
7
|
+
data.tar.gz: 4fb300cc839e78c5803252bcd8a24e8ea32ef981278b17b9893f98e7dd86c205d79cda6d73e902e99ef4cdc31ebf7f2fe5b24d36b09c0c8bdc962cfa35a99614
|
data/CHANGELOG.md
CHANGED
@@ -5531,7 +5531,7 @@ module Google
|
|
5531
5531
|
# @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfig]
|
5532
5532
|
attr_accessor :eua_oauth_auth_config
|
5533
5533
|
|
5534
|
-
# Eventing Configuration of a connection next:
|
5534
|
+
# Eventing Configuration of a connection next: 19
|
5535
5535
|
# Corresponds to the JSON property `eventingConfig`
|
5536
5536
|
# @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1EventingConfig]
|
5537
5537
|
attr_accessor :eventing_config
|
@@ -5913,7 +5913,7 @@ module Google
|
|
5913
5913
|
end
|
5914
5914
|
end
|
5915
5915
|
|
5916
|
-
# Eventing Configuration of a connection next:
|
5916
|
+
# Eventing Configuration of a connection next: 19
|
5917
5917
|
class GoogleCloudConnectorsV1EventingConfig
|
5918
5918
|
include Google::Apis::Core::Hashable
|
5919
5919
|
|
@@ -5954,6 +5954,12 @@ module Google
|
|
5954
5954
|
# @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfig]
|
5955
5955
|
attr_accessor :listener_auth_config
|
5956
5956
|
|
5957
|
+
# Optional. List of projects to be allowlisted for the service attachment
|
5958
|
+
# created in the tenant project for eventing ingress.
|
5959
|
+
# Corresponds to the JSON property `privateConnectivityAllowlistedProjects`
|
5960
|
+
# @return [Array<String>]
|
5961
|
+
attr_accessor :private_connectivity_allowlisted_projects
|
5962
|
+
|
5957
5963
|
# Optional. Private Connectivity Enabled.
|
5958
5964
|
# Corresponds to the JSON property `privateConnectivityEnabled`
|
5959
5965
|
# @return [Boolean]
|
@@ -5988,6 +5994,7 @@ module Google
|
|
5988
5994
|
@enrichment_enabled = args[:enrichment_enabled] if args.key?(:enrichment_enabled)
|
5989
5995
|
@events_listener_ingress_endpoint = args[:events_listener_ingress_endpoint] if args.key?(:events_listener_ingress_endpoint)
|
5990
5996
|
@listener_auth_config = args[:listener_auth_config] if args.key?(:listener_auth_config)
|
5997
|
+
@private_connectivity_allowlisted_projects = args[:private_connectivity_allowlisted_projects] if args.key?(:private_connectivity_allowlisted_projects)
|
5991
5998
|
@private_connectivity_enabled = args[:private_connectivity_enabled] if args.key?(:private_connectivity_enabled)
|
5992
5999
|
@proxy_destination_config = args[:proxy_destination_config] if args.key?(:proxy_destination_config)
|
5993
6000
|
@registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config)
|
@@ -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.14.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250610"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -3531,6 +3531,7 @@ module Google
|
|
3531
3531
|
property :events_listener_ingress_endpoint, as: 'eventsListenerIngressEndpoint'
|
3532
3532
|
property :listener_auth_config, as: 'listenerAuthConfig', class: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfig::Representation
|
3533
3533
|
|
3534
|
+
collection :private_connectivity_allowlisted_projects, as: 'privateConnectivityAllowlistedProjects'
|
3534
3535
|
property :private_connectivity_enabled, as: 'privateConnectivityEnabled'
|
3535
3536
|
property :proxy_destination_config, as: 'proxyDestinationConfig', class: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1DestinationConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1DestinationConfig::Representation
|
3536
3537
|
|
@@ -5115,6 +5115,8 @@ module Google
|
|
5115
5115
|
# templates and return a list of templates based on the user filter.
|
5116
5116
|
# @param [String] parent
|
5117
5117
|
# Required. The client, which owns this collection of Templates.
|
5118
|
+
# @param [Boolean] enable_natural_language_query_understanding
|
5119
|
+
# Optional. Whether to enable natural language query understanding.
|
5118
5120
|
# @param [String] filter
|
5119
5121
|
# Optional. Standard filter field to filter templates. client_id filter won't be
|
5120
5122
|
# supported and will restrict to templates belonging to the current client only.
|
@@ -5127,6 +5129,8 @@ module Google
|
|
5127
5129
|
# The maximum value is 1000; values above 1000 will be coerced to 1000.
|
5128
5130
|
# @param [String] page_token
|
5129
5131
|
# Optional. The token returned in the previous response.
|
5132
|
+
# @param [String] query
|
5133
|
+
# Optional. The search query that will be passed to Vertex search service.
|
5130
5134
|
# @param [String] read_mask
|
5131
5135
|
# Optional. The mask which specifies fields that need to be returned in the
|
5132
5136
|
# template's response.
|
@@ -5147,15 +5151,17 @@ module Google
|
|
5147
5151
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5148
5152
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5149
5153
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5150
|
-
def search_project_location_templates(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, read_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5154
|
+
def search_project_location_templates(parent, enable_natural_language_query_understanding: nil, filter: nil, order_by: nil, page_size: nil, page_token: nil, query: nil, read_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5151
5155
|
command = make_simple_command(:get, 'v1/{+parent}/templates:search', options)
|
5152
5156
|
command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaSearchTemplatesResponse::Representation
|
5153
5157
|
command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaSearchTemplatesResponse
|
5154
5158
|
command.params['parent'] = parent unless parent.nil?
|
5159
|
+
command.query['enableNaturalLanguageQueryUnderstanding'] = enable_natural_language_query_understanding unless enable_natural_language_query_understanding.nil?
|
5155
5160
|
command.query['filter'] = filter unless filter.nil?
|
5156
5161
|
command.query['orderBy'] = order_by unless order_by.nil?
|
5157
5162
|
command.query['pageSize'] = page_size unless page_size.nil?
|
5158
5163
|
command.query['pageToken'] = page_token unless page_token.nil?
|
5164
|
+
command.query['query'] = query unless query.nil?
|
5159
5165
|
command.query['readMask'] = read_mask unless read_mask.nil?
|
5160
5166
|
command.query['fields'] = fields unless fields.nil?
|
5161
5167
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
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.14.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.14.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:
|