google-apis-integrations_v1 0.12.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,10 @@
|
|
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
|
+
|
3
8
|
### v0.12.0 (2025-05-18)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20250506
|
@@ -7075,6 +7075,13 @@ module Google
|
|
7075
7075
|
attr_accessor :enable_internal_ip
|
7076
7076
|
alias_method :enable_internal_ip?, :enable_internal_ip
|
7077
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
|
+
|
7078
7085
|
# Optional. True if variable masking feature should be turned on for this region
|
7079
7086
|
# Corresponds to the JSON property `enableVariableMasking`
|
7080
7087
|
# @return [Boolean]
|
@@ -7127,6 +7134,7 @@ module Google
|
|
7127
7134
|
@description = args[:description] if args.key?(:description)
|
7128
7135
|
@enable_http_call = args[:enable_http_call] if args.key?(:enable_http_call)
|
7129
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)
|
7130
7138
|
@enable_variable_masking = args[:enable_variable_masking] if args.key?(:enable_variable_masking)
|
7131
7139
|
@id = args[:id] if args.key?(:id)
|
7132
7140
|
@is_gmek = args[:is_gmek] if args.key?(:is_gmek)
|
@@ -10121,6 +10129,38 @@ module Google
|
|
10121
10129
|
end
|
10122
10130
|
end
|
10123
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
|
+
|
10124
10164
|
# Request for the Provision rpc
|
10125
10165
|
class GoogleCloudIntegrationsV1alphaProvisionClientRequest
|
10126
10166
|
include Google::Apis::Core::Hashable
|
@@ -10143,6 +10183,15 @@ module Google
|
|
10143
10183
|
attr_accessor :enable_http_call
|
10144
10184
|
alias_method :enable_http_call?, :enable_http_call
|
10145
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
|
+
|
10146
10195
|
# Optional. Deprecated. Indicates provision with GMEK or CMEK. This field is
|
10147
10196
|
# deprecated and the provision would always be GMEK if cloud_kms_config is not
|
10148
10197
|
# present in the request.
|
@@ -10172,6 +10221,7 @@ module Google
|
|
10172
10221
|
@cloud_kms_config = args[:cloud_kms_config] if args.key?(:cloud_kms_config)
|
10173
10222
|
@create_sample_workflows = args[:create_sample_workflows] if args.key?(:create_sample_workflows)
|
10174
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)
|
10175
10225
|
@provision_gmek = args[:provision_gmek] if args.key?(:provision_gmek)
|
10176
10226
|
@run_as_service_account = args[:run_as_service_account] if args.key?(:run_as_service_account)
|
10177
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
|
|
@@ -3817,6 +3829,7 @@ module Google
|
|
3817
3829
|
property :description, as: 'description'
|
3818
3830
|
property :enable_http_call, as: 'enableHttpCall'
|
3819
3831
|
property :enable_internal_ip, as: 'enableInternalIp'
|
3832
|
+
property :enable_managed_ai_features, as: 'enableManagedAiFeatures'
|
3820
3833
|
property :enable_variable_masking, as: 'enableVariableMasking'
|
3821
3834
|
property :id, as: 'id'
|
3822
3835
|
property :is_gmek, as: 'isGmek'
|
@@ -4696,6 +4709,19 @@ module Google
|
|
4696
4709
|
end
|
4697
4710
|
end
|
4698
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
|
+
|
4699
4725
|
class GoogleCloudIntegrationsV1alphaProvisionClientRequest
|
4700
4726
|
# @private
|
4701
4727
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4703,6 +4729,7 @@ module Google
|
|
4703
4729
|
|
4704
4730
|
property :create_sample_workflows, as: 'createSampleWorkflows'
|
4705
4731
|
property :enable_http_call, as: 'enableHttpCall'
|
4732
|
+
property :enable_managed_ai_features, as: 'enableManagedAiFeatures'
|
4706
4733
|
property :provision_gmek, as: 'provisionGmek'
|
4707
4734
|
property :run_as_service_account, as: 'runAsServiceAccount'
|
4708
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: []
|