google-apis-integrations_v1 0.7.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
@@ -11478,6 +11478,27 @@ module Google
|
|
11478
11478
|
end
|
11479
11479
|
end
|
11480
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
|
+
|
11481
11502
|
# Configuration detail of a trigger.
|
11482
11503
|
class GoogleCloudIntegrationsV1alphaTriggerConfig
|
11483
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
|
|
@@ -5028,6 +5034,13 @@ module Google
|
|
5028
5034
|
end
|
5029
5035
|
end
|
5030
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
|
+
|
5031
5044
|
class GoogleCloudIntegrationsV1alphaTriggerConfig
|
5032
5045
|
# @private
|
5033
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.
|
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:
|