google-apis-integrations_v1 0.6.0 → 0.8.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: 7a64c308ff8089e628c4b75b96ada28a17c1ccb059b87363380636cc27471344
|
4
|
+
data.tar.gz: 11113651536d547a41006a325c0d7db66a252c03734cbe950ece9c8d5baed9aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 986a0b2e1d1efbba9aeac7cee7d55b4ca5f3635ee0502de251c81f84c4c49c041925dde5c4f34146ef2b441ca5c5fa9b28d8a027c53f457fc0001ce3add66846
|
7
|
+
data.tar.gz: da14213014a04ee8484007be548b6cb38e6a1e5cb5aa034b5b87b606191b49ee5b71cf7e6098f5c8be668caa1d89443d312698fac2f5af8a233db4410882116a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-integrations_v1
|
2
2
|
|
3
|
+
### v0.8.0 (2025-04-06)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250330
|
6
|
+
|
7
|
+
### v0.7.0 (2025-03-23)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250316
|
10
|
+
|
3
11
|
### v0.6.0 (2025-03-16)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250310
|
@@ -6977,6 +6977,12 @@ module Google
|
|
6977
6977
|
# @return [String]
|
6978
6978
|
attr_accessor :description
|
6979
6979
|
|
6980
|
+
# Optional. Indicates the client enables making HTTP call.
|
6981
|
+
# Corresponds to the JSON property `enableHttpCall`
|
6982
|
+
# @return [Boolean]
|
6983
|
+
attr_accessor :enable_http_call
|
6984
|
+
alias_method :enable_http_call?, :enable_http_call
|
6985
|
+
|
6980
6986
|
# Optional. Indicates the client enables internal IP feature, this is applicable
|
6981
6987
|
# for internal clients only.
|
6982
6988
|
# Corresponds to the JSON property `enableInternalIp`
|
@@ -7034,6 +7040,7 @@ module Google
|
|
7034
7040
|
@cloud_kms_config = args[:cloud_kms_config] if args.key?(:cloud_kms_config)
|
7035
7041
|
@create_time = args[:create_time] if args.key?(:create_time)
|
7036
7042
|
@description = args[:description] if args.key?(:description)
|
7043
|
+
@enable_http_call = args[:enable_http_call] if args.key?(:enable_http_call)
|
7037
7044
|
@enable_internal_ip = args[:enable_internal_ip] if args.key?(:enable_internal_ip)
|
7038
7045
|
@enable_variable_masking = args[:enable_variable_masking] if args.key?(:enable_variable_masking)
|
7039
7046
|
@id = args[:id] if args.key?(:id)
|
@@ -9911,6 +9918,12 @@ module Google
|
|
9911
9918
|
attr_accessor :create_sample_workflows
|
9912
9919
|
alias_method :create_sample_workflows?, :create_sample_workflows
|
9913
9920
|
|
9921
|
+
# Optional. Indicates if the client should be allowed to make HTTP calls.
|
9922
|
+
# Corresponds to the JSON property `enableHttpCall`
|
9923
|
+
# @return [Boolean]
|
9924
|
+
attr_accessor :enable_http_call
|
9925
|
+
alias_method :enable_http_call?, :enable_http_call
|
9926
|
+
|
9914
9927
|
# Optional. Deprecated. Indicates provision with GMEK or CMEK. This field is
|
9915
9928
|
# deprecated and the provision would always be GMEK if cloud_kms_config is not
|
9916
9929
|
# present in the request.
|
@@ -9939,6 +9952,7 @@ module Google
|
|
9939
9952
|
def update!(**args)
|
9940
9953
|
@cloud_kms_config = args[:cloud_kms_config] if args.key?(:cloud_kms_config)
|
9941
9954
|
@create_sample_workflows = args[:create_sample_workflows] if args.key?(:create_sample_workflows)
|
9955
|
+
@enable_http_call = args[:enable_http_call] if args.key?(:enable_http_call)
|
9942
9956
|
@provision_gmek = args[:provision_gmek] if args.key?(:provision_gmek)
|
9943
9957
|
@run_as_service_account = args[:run_as_service_account] if args.key?(:run_as_service_account)
|
9944
9958
|
@skip_cp_provision = args[:skip_cp_provision] if args.key?(:skip_cp_provision)
|
@@ -11464,6 +11478,27 @@ module Google
|
|
11464
11478
|
end
|
11465
11479
|
end
|
11466
11480
|
|
11481
|
+
# Request to enable/disable http call for a provisioned client
|
11482
|
+
class GoogleCloudIntegrationsV1alphaToggleHttpRequest
|
11483
|
+
include Google::Apis::Core::Hashable
|
11484
|
+
|
11485
|
+
# Required. REQUIRED: True if http call feature should be turned on for this
|
11486
|
+
# region
|
11487
|
+
# Corresponds to the JSON property `enableHttpCall`
|
11488
|
+
# @return [Boolean]
|
11489
|
+
attr_accessor :enable_http_call
|
11490
|
+
alias_method :enable_http_call?, :enable_http_call
|
11491
|
+
|
11492
|
+
def initialize(**args)
|
11493
|
+
update!(**args)
|
11494
|
+
end
|
11495
|
+
|
11496
|
+
# Update properties of this object
|
11497
|
+
def update!(**args)
|
11498
|
+
@enable_http_call = args[:enable_http_call] if args.key?(:enable_http_call)
|
11499
|
+
end
|
11500
|
+
end
|
11501
|
+
|
11467
11502
|
# Configuration detail of a trigger.
|
11468
11503
|
class GoogleCloudIntegrationsV1alphaTriggerConfig
|
11469
11504
|
include Google::Apis::Core::Hashable
|
@@ -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.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250330"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1732,6 +1732,12 @@ module Google
|
|
1732
1732
|
include Google::Apis::Core::JsonObjectSupport
|
1733
1733
|
end
|
1734
1734
|
|
1735
|
+
class GoogleCloudIntegrationsV1alphaToggleHttpRequest
|
1736
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1737
|
+
|
1738
|
+
include Google::Apis::Core::JsonObjectSupport
|
1739
|
+
end
|
1740
|
+
|
1735
1741
|
class GoogleCloudIntegrationsV1alphaTriggerConfig
|
1736
1742
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1737
1743
|
|
@@ -3754,6 +3760,7 @@ module Google
|
|
3754
3760
|
|
3755
3761
|
property :create_time, as: 'createTime'
|
3756
3762
|
property :description, as: 'description'
|
3763
|
+
property :enable_http_call, as: 'enableHttpCall'
|
3757
3764
|
property :enable_internal_ip, as: 'enableInternalIp'
|
3758
3765
|
property :enable_variable_masking, as: 'enableVariableMasking'
|
3759
3766
|
property :id, as: 'id'
|
@@ -4596,6 +4603,7 @@ module Google
|
|
4596
4603
|
property :cloud_kms_config, as: 'cloudKmsConfig', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig::Representation
|
4597
4604
|
|
4598
4605
|
property :create_sample_workflows, as: 'createSampleWorkflows'
|
4606
|
+
property :enable_http_call, as: 'enableHttpCall'
|
4599
4607
|
property :provision_gmek, as: 'provisionGmek'
|
4600
4608
|
property :run_as_service_account, as: 'runAsServiceAccount'
|
4601
4609
|
property :skip_cp_provision, as: 'skipCpProvision'
|
@@ -5026,6 +5034,13 @@ module Google
|
|
5026
5034
|
end
|
5027
5035
|
end
|
5028
5036
|
|
5037
|
+
class GoogleCloudIntegrationsV1alphaToggleHttpRequest
|
5038
|
+
# @private
|
5039
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5040
|
+
property :enable_http_call, as: 'enableHttpCall'
|
5041
|
+
end
|
5042
|
+
end
|
5043
|
+
|
5029
5044
|
class GoogleCloudIntegrationsV1alphaTriggerConfig
|
5030
5045
|
# @private
|
5031
5046
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -893,6 +893,39 @@ module Google
|
|
893
893
|
execute_or_queue_command(command, &block)
|
894
894
|
end
|
895
895
|
|
896
|
+
# Enable/Disable http call for provisioned client
|
897
|
+
# @param [String] parent
|
898
|
+
# Required. Required: The ID of the GCP Project to be provisioned.
|
899
|
+
# @param [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaToggleHttpRequest] google_cloud_integrations_v1alpha_toggle_http_request_object
|
900
|
+
# @param [String] fields
|
901
|
+
# Selector specifying which fields to include in a partial response.
|
902
|
+
# @param [String] quota_user
|
903
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
904
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
905
|
+
# @param [Google::Apis::RequestOptions] options
|
906
|
+
# Request-specific options
|
907
|
+
#
|
908
|
+
# @yield [result, err] Result & error if block supplied
|
909
|
+
# @yieldparam result [Google::Apis::IntegrationsV1::GoogleProtobufEmpty] parsed result object
|
910
|
+
# @yieldparam err [StandardError] error object if request failed
|
911
|
+
#
|
912
|
+
# @return [Google::Apis::IntegrationsV1::GoogleProtobufEmpty]
|
913
|
+
#
|
914
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
915
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
916
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
917
|
+
def toggle_project_location_client_http(parent, google_cloud_integrations_v1alpha_toggle_http_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
918
|
+
command = make_simple_command(:post, 'v1/{+parent}/clients:toggleHttp', options)
|
919
|
+
command.request_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaToggleHttpRequest::Representation
|
920
|
+
command.request_object = google_cloud_integrations_v1alpha_toggle_http_request_object
|
921
|
+
command.response_representation = Google::Apis::IntegrationsV1::GoogleProtobufEmpty::Representation
|
922
|
+
command.response_class = Google::Apis::IntegrationsV1::GoogleProtobufEmpty
|
923
|
+
command.params['parent'] = parent unless parent.nil?
|
924
|
+
command.query['fields'] = fields unless fields.nil?
|
925
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
926
|
+
execute_or_queue_command(command, &block)
|
927
|
+
end
|
928
|
+
|
896
929
|
# Creates a cloud function project.
|
897
930
|
# @param [String] parent
|
898
931
|
# Required. The project that the executed integration belongs to.
|
@@ -1281,6 +1314,8 @@ module Google
|
|
1281
1314
|
# @param [String] parent
|
1282
1315
|
# Required. Project and location from which the integrations should be listed.
|
1283
1316
|
# Format: projects/*/locations/*/resources/integrations
|
1317
|
+
# @param [Boolean] enable_natural_language_query_understanding
|
1318
|
+
# Optional. Whether to enable natural language query understanding.
|
1284
1319
|
# @param [String] filter
|
1285
1320
|
# Optional. The pre-filter to be applied to the search. This should follow the
|
1286
1321
|
# expressions defined in https://cloud.google.com/generative-ai-app-builder/docs/
|
@@ -1314,11 +1349,12 @@ module Google
|
|
1314
1349
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1315
1350
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1316
1351
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1317
|
-
def search_project_location_integrations(parent, filter: nil, page_size: nil, page_token: nil, query: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1352
|
+
def search_project_location_integrations(parent, enable_natural_language_query_understanding: nil, filter: nil, page_size: nil, page_token: nil, query: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1318
1353
|
command = make_simple_command(:get, 'v1/{+parent}/integrations:search', options)
|
1319
1354
|
command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaSearchIntegrationsResponse::Representation
|
1320
1355
|
command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaSearchIntegrationsResponse
|
1321
1356
|
command.params['parent'] = parent unless parent.nil?
|
1357
|
+
command.query['enableNaturalLanguageQueryUnderstanding'] = enable_natural_language_query_understanding unless enable_natural_language_query_understanding.nil?
|
1322
1358
|
command.query['filter'] = filter unless filter.nil?
|
1323
1359
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1324
1360
|
command.query['pageToken'] = page_token unless page_token.nil?
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-16 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-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.8.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:
|