google-apis-integrations_v1alpha 0.1.0 → 0.2.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 +5 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/integrations_v1alpha/classes.rb +91 -7
- data/lib/google/apis/integrations_v1alpha/gem_version.rb +3 -3
- data/lib/google/apis/integrations_v1alpha/representations.rb +36 -2
- data/lib/google/apis/integrations_v1alpha/service.rb +45 -51
- data/lib/google/apis/integrations_v1alpha.rb +1 -1
- 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: 60529f9307229512ca3c0fa1727a87638255eb1225060a25b9f95fa78c18130c
|
4
|
+
data.tar.gz: 3b13272bd4e0eeaece0d500c80212b43b49101e557bcf3308f65398cad0fff51
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e178b7baa7b5ba1b41d5befed8e082cefed5007c8dca0b154a5bf503e2e4287f7a1ad6192699239f547ea99f7d73252deecd6cd1fa0c23e0907ec27a6de4870
|
7
|
+
data.tar.gz: 4e023cdde4691a26f842ee708709bf5d22aed2fea8a671f24a84cab78c1bf2d7a32a0de2be4228d8cd38473e32024186144971457c25f85d95bf8dcdec59f44e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-integrations_v1alpha
|
2
2
|
|
3
|
+
### v0.2.0 (2022-10-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221025
|
6
|
+
* Regenerated using generator version 0.11.0
|
7
|
+
|
3
8
|
### v0.1.0 (2022-09-22)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20220913
|
data/OVERVIEW.md
CHANGED
@@ -79,7 +79,7 @@ Gem names for modern clients are often of the form `google-cloud-<service_name>`
|
|
79
79
|
|
80
80
|
**For most users, we recommend the modern client, if one is available.** Compared with simple clients, modern clients are generally much easier to use and more Ruby-like, support more advanced features such as streaming and long-running operations, and often provide much better performance. You may consider using a simple client instead, if a modern client is not yet available for the service you want to use, or if you are not able to use gRPC on your infrastructure.
|
81
81
|
|
82
|
-
The [product documentation](
|
82
|
+
The [product documentation](https://cloud.google.com/application-integration) may provide guidance regarding the preferred client library to use.
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
@@ -569,6 +569,45 @@ module Google
|
|
569
569
|
end
|
570
570
|
end
|
571
571
|
|
572
|
+
# Cloud Scheduler Trigger configuration
|
573
|
+
class EnterpriseCrmEventbusProtoCloudSchedulerConfig
|
574
|
+
include Google::Apis::Core::Hashable
|
575
|
+
|
576
|
+
# Required. The cron tab of cloud scheduler trigger.
|
577
|
+
# Corresponds to the JSON property `cronTab`
|
578
|
+
# @return [String]
|
579
|
+
attr_accessor :cron_tab
|
580
|
+
|
581
|
+
# Optional. When the job was deleted from Pantheon UI, error_message will be
|
582
|
+
# populated when Get/List integrations
|
583
|
+
# Corresponds to the JSON property `errorMessage`
|
584
|
+
# @return [String]
|
585
|
+
attr_accessor :error_message
|
586
|
+
|
587
|
+
# Required. The location where associated cloud scheduler job will be created
|
588
|
+
# Corresponds to the JSON property `location`
|
589
|
+
# @return [String]
|
590
|
+
attr_accessor :location
|
591
|
+
|
592
|
+
# Required. Service account used by Cloud Scheduler to trigger the integration
|
593
|
+
# at scheduled time
|
594
|
+
# Corresponds to the JSON property `serviceAccountEmail`
|
595
|
+
# @return [String]
|
596
|
+
attr_accessor :service_account_email
|
597
|
+
|
598
|
+
def initialize(**args)
|
599
|
+
update!(**args)
|
600
|
+
end
|
601
|
+
|
602
|
+
# Update properties of this object
|
603
|
+
def update!(**args)
|
604
|
+
@cron_tab = args[:cron_tab] if args.key?(:cron_tab)
|
605
|
+
@error_message = args[:error_message] if args.key?(:error_message)
|
606
|
+
@location = args[:location] if args.key?(:location)
|
607
|
+
@service_account_email = args[:service_account_email] if args.key?(:service_account_email)
|
608
|
+
end
|
609
|
+
end
|
610
|
+
|
572
611
|
# This message recursively combines constituent conditions using logical AND.
|
573
612
|
class EnterpriseCrmEventbusProtoCombinedCondition
|
574
613
|
include Google::Apis::Core::Hashable
|
@@ -4561,7 +4600,7 @@ module Google
|
|
4561
4600
|
end
|
4562
4601
|
end
|
4563
4602
|
|
4564
|
-
# Configuration detail of a trigger. Next available id:
|
4603
|
+
# Configuration detail of a trigger. Next available id: 17
|
4565
4604
|
class EnterpriseCrmFrontendsEventbusProtoTriggerConfig
|
4566
4605
|
include Google::Apis::Core::Hashable
|
4567
4606
|
|
@@ -4573,6 +4612,11 @@ module Google
|
|
4573
4612
|
# @return [Array<Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoWorkflowAlertConfig>]
|
4574
4613
|
attr_accessor :alert_config
|
4575
4614
|
|
4615
|
+
# Cloud Scheduler Trigger configuration
|
4616
|
+
# Corresponds to the JSON property `cloudSchedulerConfig`
|
4617
|
+
# @return [Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoCloudSchedulerConfig]
|
4618
|
+
attr_accessor :cloud_scheduler_config
|
4619
|
+
|
4576
4620
|
# User-provided description intended to give more business context about the
|
4577
4621
|
# task.
|
4578
4622
|
# Corresponds to the JSON property `description`
|
@@ -4657,6 +4701,7 @@ module Google
|
|
4657
4701
|
# Update properties of this object
|
4658
4702
|
def update!(**args)
|
4659
4703
|
@alert_config = args[:alert_config] if args.key?(:alert_config)
|
4704
|
+
@cloud_scheduler_config = args[:cloud_scheduler_config] if args.key?(:cloud_scheduler_config)
|
4660
4705
|
@description = args[:description] if args.key?(:description)
|
4661
4706
|
@enabled_clients = args[:enabled_clients] if args.key?(:enabled_clients)
|
4662
4707
|
@label = args[:label] if args.key?(:label)
|
@@ -5033,11 +5078,6 @@ module Google
|
|
5033
5078
|
# @return [String]
|
5034
5079
|
attr_accessor :cert_type
|
5035
5080
|
|
5036
|
-
# Secret provides a reference to entries in Secret Manager.
|
5037
|
-
# Corresponds to the JSON property `password`
|
5038
|
-
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret]
|
5039
|
-
attr_accessor :password
|
5040
|
-
|
5041
5081
|
# Secret provides a reference to entries in Secret Manager.
|
5042
5082
|
# Corresponds to the JSON property `sshClientCert`
|
5043
5083
|
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret]
|
@@ -5060,7 +5100,6 @@ module Google
|
|
5060
5100
|
# Update properties of this object
|
5061
5101
|
def update!(**args)
|
5062
5102
|
@cert_type = args[:cert_type] if args.key?(:cert_type)
|
5063
|
-
@password = args[:password] if args.key?(:password)
|
5064
5103
|
@ssh_client_cert = args[:ssh_client_cert] if args.key?(:ssh_client_cert)
|
5065
5104
|
@ssh_client_cert_pass = args[:ssh_client_cert_pass] if args.key?(:ssh_client_cert_pass)
|
5066
5105
|
@username = args[:username] if args.key?(:username)
|
@@ -5879,6 +5918,45 @@ module Google
|
|
5879
5918
|
end
|
5880
5919
|
end
|
5881
5920
|
|
5921
|
+
# Cloud Scheduler Trigger configuration
|
5922
|
+
class GoogleCloudIntegrationsV1alphaCloudSchedulerConfig
|
5923
|
+
include Google::Apis::Core::Hashable
|
5924
|
+
|
5925
|
+
# Required. The cron tab of cloud scheduler trigger.
|
5926
|
+
# Corresponds to the JSON property `cronTab`
|
5927
|
+
# @return [String]
|
5928
|
+
attr_accessor :cron_tab
|
5929
|
+
|
5930
|
+
# Optional. When the job was deleted from Pantheon UI, error_message will be
|
5931
|
+
# populated when Get/List integrations
|
5932
|
+
# Corresponds to the JSON property `errorMessage`
|
5933
|
+
# @return [String]
|
5934
|
+
attr_accessor :error_message
|
5935
|
+
|
5936
|
+
# Required. The location where associated cloud scheduler job will be created
|
5937
|
+
# Corresponds to the JSON property `location`
|
5938
|
+
# @return [String]
|
5939
|
+
attr_accessor :location
|
5940
|
+
|
5941
|
+
# Required. Service account used by Cloud Scheduler to trigger the integration
|
5942
|
+
# at scheduled time
|
5943
|
+
# Corresponds to the JSON property `serviceAccountEmail`
|
5944
|
+
# @return [String]
|
5945
|
+
attr_accessor :service_account_email
|
5946
|
+
|
5947
|
+
def initialize(**args)
|
5948
|
+
update!(**args)
|
5949
|
+
end
|
5950
|
+
|
5951
|
+
# Update properties of this object
|
5952
|
+
def update!(**args)
|
5953
|
+
@cron_tab = args[:cron_tab] if args.key?(:cron_tab)
|
5954
|
+
@error_message = args[:error_message] if args.key?(:error_message)
|
5955
|
+
@location = args[:location] if args.key?(:location)
|
5956
|
+
@service_account_email = args[:service_account_email] if args.key?(:service_account_email)
|
5957
|
+
end
|
5958
|
+
end
|
5959
|
+
|
5882
5960
|
# Metadata of runtime connection schema.
|
5883
5961
|
class GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata
|
5884
5962
|
include Google::Apis::Core::Hashable
|
@@ -9008,6 +9086,11 @@ module Google
|
|
9008
9086
|
# @return [Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationAlertConfig>]
|
9009
9087
|
attr_accessor :alert_config
|
9010
9088
|
|
9089
|
+
# Cloud Scheduler Trigger configuration
|
9090
|
+
# Corresponds to the JSON property `cloudSchedulerConfig`
|
9091
|
+
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCloudSchedulerConfig]
|
9092
|
+
attr_accessor :cloud_scheduler_config
|
9093
|
+
|
9011
9094
|
# Optional. User-provided description intended to give additional business
|
9012
9095
|
# context about the task.
|
9013
9096
|
# Corresponds to the JSON property `description`
|
@@ -9062,6 +9145,7 @@ module Google
|
|
9062
9145
|
# Update properties of this object
|
9063
9146
|
def update!(**args)
|
9064
9147
|
@alert_config = args[:alert_config] if args.key?(:alert_config)
|
9148
|
+
@cloud_scheduler_config = args[:cloud_scheduler_config] if args.key?(:cloud_scheduler_config)
|
9065
9149
|
@description = args[:description] if args.key?(:description)
|
9066
9150
|
@label = args[:label] if args.key?(:label)
|
9067
9151
|
@next_tasks_execution_policy = args[:next_tasks_execution_policy] if args.key?(:next_tasks_execution_policy)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module IntegrationsV1alpha
|
18
18
|
# Version of the google-apis-integrations_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.2.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221025"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -136,6 +136,12 @@ module Google
|
|
136
136
|
include Google::Apis::Core::JsonObjectSupport
|
137
137
|
end
|
138
138
|
|
139
|
+
class EnterpriseCrmEventbusProtoCloudSchedulerConfig
|
140
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
|
+
|
142
|
+
include Google::Apis::Core::JsonObjectSupport
|
143
|
+
end
|
144
|
+
|
139
145
|
class EnterpriseCrmEventbusProtoCombinedCondition
|
140
146
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
147
|
|
@@ -934,6 +940,12 @@ module Google
|
|
934
940
|
include Google::Apis::Core::JsonObjectSupport
|
935
941
|
end
|
936
942
|
|
943
|
+
class GoogleCloudIntegrationsV1alphaCloudSchedulerConfig
|
944
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
945
|
+
|
946
|
+
include Google::Apis::Core::JsonObjectSupport
|
947
|
+
end
|
948
|
+
|
937
949
|
class GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata
|
938
950
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
939
951
|
|
@@ -1682,6 +1694,16 @@ module Google
|
|
1682
1694
|
end
|
1683
1695
|
end
|
1684
1696
|
|
1697
|
+
class EnterpriseCrmEventbusProtoCloudSchedulerConfig
|
1698
|
+
# @private
|
1699
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1700
|
+
property :cron_tab, as: 'cronTab'
|
1701
|
+
property :error_message, as: 'errorMessage'
|
1702
|
+
property :location, as: 'location'
|
1703
|
+
property :service_account_email, as: 'serviceAccountEmail'
|
1704
|
+
end
|
1705
|
+
end
|
1706
|
+
|
1685
1707
|
class EnterpriseCrmEventbusProtoCombinedCondition
|
1686
1708
|
# @private
|
1687
1709
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2822,6 +2844,8 @@ module Google
|
|
2822
2844
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2823
2845
|
collection :alert_config, as: 'alertConfig', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoWorkflowAlertConfig, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoWorkflowAlertConfig::Representation
|
2824
2846
|
|
2847
|
+
property :cloud_scheduler_config, as: 'cloudSchedulerConfig', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoCloudSchedulerConfig, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoCloudSchedulerConfig::Representation
|
2848
|
+
|
2825
2849
|
property :description, as: 'description'
|
2826
2850
|
collection :enabled_clients, as: 'enabledClients'
|
2827
2851
|
property :label, as: 'label'
|
@@ -2941,8 +2965,6 @@ module Google
|
|
2941
2965
|
# @private
|
2942
2966
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2943
2967
|
property :cert_type, as: 'certType'
|
2944
|
-
property :password, as: 'password', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret::Representation
|
2945
|
-
|
2946
2968
|
property :ssh_client_cert, as: 'sshClientCert', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret::Representation
|
2947
2969
|
|
2948
2970
|
property :ssh_client_cert_pass, as: 'sshClientCertPass', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret::Representation
|
@@ -3171,6 +3193,16 @@ module Google
|
|
3171
3193
|
end
|
3172
3194
|
end
|
3173
3195
|
|
3196
|
+
class GoogleCloudIntegrationsV1alphaCloudSchedulerConfig
|
3197
|
+
# @private
|
3198
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3199
|
+
property :cron_tab, as: 'cronTab'
|
3200
|
+
property :error_message, as: 'errorMessage'
|
3201
|
+
property :location, as: 'location'
|
3202
|
+
property :service_account_email, as: 'serviceAccountEmail'
|
3203
|
+
end
|
3204
|
+
end
|
3205
|
+
|
3174
3206
|
class GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata
|
3175
3207
|
# @private
|
3176
3208
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4076,6 +4108,8 @@ module Google
|
|
4076
4108
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4077
4109
|
collection :alert_config, as: 'alertConfig', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationAlertConfig, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationAlertConfig::Representation
|
4078
4110
|
|
4111
|
+
property :cloud_scheduler_config, as: 'cloudSchedulerConfig', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCloudSchedulerConfig, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCloudSchedulerConfig::Representation
|
4112
|
+
|
4079
4113
|
property :description, as: 'description'
|
4080
4114
|
property :label, as: 'label'
|
4081
4115
|
property :next_tasks_execution_policy, as: 'nextTasksExecutionPolicy'
|
@@ -30,7 +30,7 @@ module Google
|
|
30
30
|
# Integrations = Google::Apis::IntegrationsV1alpha # Alias the module
|
31
31
|
# service = Integrations::IntegrationsService.new
|
32
32
|
#
|
33
|
-
# @see
|
33
|
+
# @see https://cloud.google.com/application-integration
|
34
34
|
class IntegrationsService < Google::Apis::Core::BaseService
|
35
35
|
# @return [String]
|
36
36
|
# API key. Your API key identifies your project and provides you with API access,
|
@@ -854,8 +854,6 @@ module Google
|
|
854
854
|
# Start timestamp.
|
855
855
|
# @param [Array<String>, String] filter_params_task_statuses
|
856
856
|
# List of possible task statuses.
|
857
|
-
# @param [String] filter_params_trigger_id
|
858
|
-
# Trigger id.
|
859
857
|
# @param [String] filter_params_workflow_name
|
860
858
|
# Workflow name.
|
861
859
|
# @param [String] order_by
|
@@ -895,7 +893,7 @@ module Google
|
|
895
893
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
896
894
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
897
895
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
898
|
-
def list_project_location_integration_executions(parent, filter: nil, filter_params_custom_filter: nil, filter_params_end_time: nil, filter_params_event_statuses: nil, filter_params_execution_id: nil, filter_params_parameter_key: nil, filter_params_parameter_pair_key: nil, filter_params_parameter_pair_value: nil, filter_params_parameter_type: nil, filter_params_parameter_value: nil, filter_params_start_time: nil, filter_params_task_statuses: nil,
|
896
|
+
def list_project_location_integration_executions(parent, filter: nil, filter_params_custom_filter: nil, filter_params_end_time: nil, filter_params_event_statuses: nil, filter_params_execution_id: nil, filter_params_parameter_key: nil, filter_params_parameter_pair_key: nil, filter_params_parameter_pair_value: nil, filter_params_parameter_type: nil, filter_params_parameter_value: nil, filter_params_start_time: nil, filter_params_task_statuses: nil, filter_params_workflow_name: nil, order_by: nil, page_size: nil, page_token: nil, read_mask: nil, refresh_acl: nil, truncate_params: nil, fields: nil, quota_user: nil, options: nil, &block)
|
899
897
|
command = make_simple_command(:get, 'v1alpha/{+parent}/executions', options)
|
900
898
|
command.response_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListExecutionsResponse::Representation
|
901
899
|
command.response_class = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListExecutionsResponse
|
@@ -912,7 +910,6 @@ module Google
|
|
912
910
|
command.query['filterParams.parameterValue'] = filter_params_parameter_value unless filter_params_parameter_value.nil?
|
913
911
|
command.query['filterParams.startTime'] = filter_params_start_time unless filter_params_start_time.nil?
|
914
912
|
command.query['filterParams.taskStatuses'] = filter_params_task_statuses unless filter_params_task_statuses.nil?
|
915
|
-
command.query['filterParams.triggerId'] = filter_params_trigger_id unless filter_params_trigger_id.nil?
|
916
913
|
command.query['filterParams.workflowName'] = filter_params_workflow_name unless filter_params_workflow_name.nil?
|
917
914
|
command.query['orderBy'] = order_by unless order_by.nil?
|
918
915
|
command.query['pageSize'] = page_size unless page_size.nil?
|
@@ -935,8 +932,8 @@ module Google
|
|
935
932
|
# released when Archiving a integration. Currently, there is no unarchive
|
936
933
|
# mechanism.
|
937
934
|
# @param [String] name
|
938
|
-
# Required. The version to archive. Format: projects/`project`/
|
939
|
-
# integration`/versions/`version`
|
935
|
+
# Required. The version to archive. Format: projects/`project`/locations/`
|
936
|
+
# location`/integrations/`integration`/versions/`version`
|
940
937
|
# @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaArchiveIntegrationVersionRequest] google_cloud_integrations_v1alpha_archive_integration_version_request_object
|
941
938
|
# @param [String] fields
|
942
939
|
# Selector specifying which fields to include in a partial response.
|
@@ -970,7 +967,7 @@ module Google
|
|
970
967
|
# Create a integration with a draft version in the specified project.
|
971
968
|
# @param [String] parent
|
972
969
|
# Required. The parent resource where this version will be created. Format:
|
973
|
-
# projects/`project`/integrations/`integration`
|
970
|
+
# projects/`project`/locations/`location`/integrations/`integration`
|
974
971
|
# @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationVersion] google_cloud_integrations_v1alpha_integration_version_object
|
975
972
|
# @param [Boolean] new_integration
|
976
973
|
# Set this flag to true, if draft version is to be created for a brand new
|
@@ -1012,8 +1009,8 @@ module Google
|
|
1012
1009
|
# tags do not change. This RPC throws an exception if the version being snapshot
|
1013
1010
|
# is not ACTIVE. Audit fields added include action, action_by, action_timestamp.
|
1014
1011
|
# @param [String] name
|
1015
|
-
# Required. The version to deactivate. Format: projects/`project`/
|
1016
|
-
# integration`/versions/`version`
|
1012
|
+
# Required. The version to deactivate. Format: projects/`project`/locations/`
|
1013
|
+
# location`/integrations/`integration`/versions/`version`
|
1017
1014
|
# @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaDeactivateIntegrationVersionRequest] google_cloud_integrations_v1alpha_deactivate_integration_version_request_object
|
1018
1015
|
# @param [String] fields
|
1019
1016
|
# Selector specifying which fields to include in a partial response.
|
@@ -1046,8 +1043,8 @@ module Google
|
|
1046
1043
|
|
1047
1044
|
# Get a integration in the specified project.
|
1048
1045
|
# @param [String] name
|
1049
|
-
# Required. The version to retrieve. Format: projects/`project`/
|
1050
|
-
# integration`/versions/`version`
|
1046
|
+
# Required. The version to retrieve. Format: projects/`project`/locations/`
|
1047
|
+
# location`/integrations/`integration`/versions/`version`
|
1051
1048
|
# @param [String] fields
|
1052
1049
|
# Selector specifying which fields to include in a partial response.
|
1053
1050
|
# @param [String] quota_user
|
@@ -1078,12 +1075,12 @@ module Google
|
|
1078
1075
|
# Returns the list of all integration versions in the specified project.
|
1079
1076
|
# @param [String] parent
|
1080
1077
|
# Required. The parent resource where this version will be created. Format:
|
1081
|
-
# projects/`project`/integrations/`integration`
|
1082
|
-
# 1. projects//locations//integrations/,
|
1083
|
-
# for a particular integration". 2.
|
1084
|
-
# "List versions (with filter) for
|
1085
|
-
# projects//locations/-/integrations/-
|
1086
|
-
# a client".
|
1078
|
+
# projects/`project`/locations/`location`/integrations/`integration`
|
1079
|
+
# Specifically, when parent equals: 1. projects//locations//integrations/,
|
1080
|
+
# Meaning: "List versions (with filter) for a particular integration". 2.
|
1081
|
+
# projects//locations//integrations/- Meaning: "List versions (with filter) for
|
1082
|
+
# a client within a particular region". 3. projects//locations/-/integrations/-
|
1083
|
+
# Meaning: "List versions (with filter) for a client".
|
1087
1084
|
# @param [String] field_mask
|
1088
1085
|
# The field mask which specifies the particular data to be returned.
|
1089
1086
|
# @param [String] filter
|
@@ -1183,8 +1180,8 @@ module Google
|
|
1183
1180
|
# last_modified_timestamp, last_modified_by. Any existing lock is on this
|
1184
1181
|
# integration is released.
|
1185
1182
|
# @param [String] name
|
1186
|
-
# Required. The version to publish. Format: projects/`project`/
|
1187
|
-
# integration`/versions/`version`
|
1183
|
+
# Required. The version to publish. Format: projects/`project`/locations/`
|
1184
|
+
# location`/integrations/`integration`/versions/`version`
|
1188
1185
|
# @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaPublishIntegrationVersionRequest] google_cloud_integrations_v1alpha_publish_integration_version_request_object
|
1189
1186
|
# @param [String] fields
|
1190
1187
|
# Selector specifying which fields to include in a partial response.
|
@@ -1228,7 +1225,7 @@ module Google
|
|
1228
1225
|
# fields updated include last_modified_timestamp, last_modified_by.
|
1229
1226
|
# @param [String] integration_version
|
1230
1227
|
# Required. The version to take over edit lock. Format: projects/`project`/
|
1231
|
-
# integrations/`integration`/versions/`version`
|
1228
|
+
# locations/`location`/integrations/`integration`/versions/`version`
|
1232
1229
|
# @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaTakeoverEditLockRequest] google_cloud_integrations_v1alpha_takeover_edit_lock_request_object
|
1233
1230
|
# @param [String] fields
|
1234
1231
|
# Selector specifying which fields to include in a partial response.
|
@@ -1263,8 +1260,8 @@ module Google
|
|
1263
1260
|
# is thrown. If validation fails a CanonicalCodeException is thrown. If there
|
1264
1261
|
# was no failure an empty response is returned.
|
1265
1262
|
# @param [String] name
|
1266
|
-
# Required. The version to validate. Format: projects/`project`/
|
1267
|
-
# integration`/versions/`version`
|
1263
|
+
# Required. The version to validate. Format: projects/`project`/locations/`
|
1264
|
+
# location`/integrations/`integration`/versions/`version`
|
1268
1265
|
# @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaValidateIntegrationVersionRequest] google_cloud_integrations_v1alpha_validate_integration_version_request_object
|
1269
1266
|
# @param [String] fields
|
1270
1267
|
# Selector specifying which fields to include in a partial response.
|
@@ -1806,8 +1803,8 @@ module Google
|
|
1806
1803
|
# PROTECT WITH A VISIBILITY LABEL. THIS METHOD WILL BE MOVED TO A SEPARATE
|
1807
1804
|
# SERVICE. Soft-deletes the bundle.
|
1808
1805
|
# @param [String] name
|
1809
|
-
# Required. The bundle to archive. Format: projects/`project`/
|
1810
|
-
# integration`
|
1806
|
+
# Required. The bundle to archive. Format: projects/`project`/locations/`
|
1807
|
+
# location`/integrations/`integration`
|
1811
1808
|
# @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaArchiveBundleRequest] google_cloud_integrations_v1alpha_archive_bundle_request_object
|
1812
1809
|
# @param [String] fields
|
1813
1810
|
# Selector specifying which fields to include in a partial response.
|
@@ -2093,8 +2090,6 @@ module Google
|
|
2093
2090
|
# Start timestamp.
|
2094
2091
|
# @param [Array<String>, String] filter_params_task_statuses
|
2095
2092
|
# List of possible task statuses.
|
2096
|
-
# @param [String] filter_params_trigger_id
|
2097
|
-
# Trigger id.
|
2098
2093
|
# @param [String] filter_params_workflow_name
|
2099
2094
|
# Workflow name.
|
2100
2095
|
# @param [String] order_by
|
@@ -2134,7 +2129,7 @@ module Google
|
|
2134
2129
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2135
2130
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2136
2131
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2137
|
-
def list_project_location_product_integration_executions(parent, filter: nil, filter_params_custom_filter: nil, filter_params_end_time: nil, filter_params_event_statuses: nil, filter_params_execution_id: nil, filter_params_parameter_key: nil, filter_params_parameter_pair_key: nil, filter_params_parameter_pair_value: nil, filter_params_parameter_type: nil, filter_params_parameter_value: nil, filter_params_start_time: nil, filter_params_task_statuses: nil,
|
2132
|
+
def list_project_location_product_integration_executions(parent, filter: nil, filter_params_custom_filter: nil, filter_params_end_time: nil, filter_params_event_statuses: nil, filter_params_execution_id: nil, filter_params_parameter_key: nil, filter_params_parameter_pair_key: nil, filter_params_parameter_pair_value: nil, filter_params_parameter_type: nil, filter_params_parameter_value: nil, filter_params_start_time: nil, filter_params_task_statuses: nil, filter_params_workflow_name: nil, order_by: nil, page_size: nil, page_token: nil, read_mask: nil, refresh_acl: nil, truncate_params: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2138
2133
|
command = make_simple_command(:get, 'v1alpha/{+parent}/executions', options)
|
2139
2134
|
command.response_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListExecutionsResponse::Representation
|
2140
2135
|
command.response_class = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListExecutionsResponse
|
@@ -2151,7 +2146,6 @@ module Google
|
|
2151
2146
|
command.query['filterParams.parameterValue'] = filter_params_parameter_value unless filter_params_parameter_value.nil?
|
2152
2147
|
command.query['filterParams.startTime'] = filter_params_start_time unless filter_params_start_time.nil?
|
2153
2148
|
command.query['filterParams.taskStatuses'] = filter_params_task_statuses unless filter_params_task_statuses.nil?
|
2154
|
-
command.query['filterParams.triggerId'] = filter_params_trigger_id unless filter_params_trigger_id.nil?
|
2155
2149
|
command.query['filterParams.workflowName'] = filter_params_workflow_name unless filter_params_workflow_name.nil?
|
2156
2150
|
command.query['orderBy'] = order_by unless order_by.nil?
|
2157
2151
|
command.query['pageSize'] = page_size unless page_size.nil?
|
@@ -2337,8 +2331,8 @@ module Google
|
|
2337
2331
|
# released when Archiving a integration. Currently, there is no unarchive
|
2338
2332
|
# mechanism.
|
2339
2333
|
# @param [String] name
|
2340
|
-
# Required. The version to archive. Format: projects/`project`/
|
2341
|
-
# integration`/versions/`version`
|
2334
|
+
# Required. The version to archive. Format: projects/`project`/locations/`
|
2335
|
+
# location`/integrations/`integration`/versions/`version`
|
2342
2336
|
# @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaArchiveIntegrationVersionRequest] google_cloud_integrations_v1alpha_archive_integration_version_request_object
|
2343
2337
|
# @param [String] fields
|
2344
2338
|
# Selector specifying which fields to include in a partial response.
|
@@ -2372,7 +2366,7 @@ module Google
|
|
2372
2366
|
# Create a integration with a draft version in the specified project.
|
2373
2367
|
# @param [String] parent
|
2374
2368
|
# Required. The parent resource where this version will be created. Format:
|
2375
|
-
# projects/`project`/integrations/`integration`
|
2369
|
+
# projects/`project`/locations/`location`/integrations/`integration`
|
2376
2370
|
# @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationVersion] google_cloud_integrations_v1alpha_integration_version_object
|
2377
2371
|
# @param [Boolean] new_integration
|
2378
2372
|
# Set this flag to true, if draft version is to be created for a brand new
|
@@ -2414,8 +2408,8 @@ module Google
|
|
2414
2408
|
# tags do not change. This RPC throws an exception if the version being snapshot
|
2415
2409
|
# is not ACTIVE. Audit fields added include action, action_by, action_timestamp.
|
2416
2410
|
# @param [String] name
|
2417
|
-
# Required. The version to deactivate. Format: projects/`project`/
|
2418
|
-
# integration`/versions/`version`
|
2411
|
+
# Required. The version to deactivate. Format: projects/`project`/locations/`
|
2412
|
+
# location`/integrations/`integration`/versions/`version`
|
2419
2413
|
# @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaDeactivateIntegrationVersionRequest] google_cloud_integrations_v1alpha_deactivate_integration_version_request_object
|
2420
2414
|
# @param [String] fields
|
2421
2415
|
# Selector specifying which fields to include in a partial response.
|
@@ -2449,8 +2443,8 @@ module Google
|
|
2449
2443
|
# Downloads an integration. Retrieves the `IntegrationVersion` for a given `
|
2450
2444
|
# integration_id` and returns the response as a string.
|
2451
2445
|
# @param [String] name
|
2452
|
-
# Required. The version to download. Format: projects/`project`/
|
2453
|
-
# integration`/versions/`version`
|
2446
|
+
# Required. The version to download. Format: projects/`project`/locations/`
|
2447
|
+
# location`/integrations/`integration`/versions/`version`
|
2454
2448
|
# @param [String] file_format
|
2455
2449
|
# File format for download request.
|
2456
2450
|
# @param [String] fields
|
@@ -2483,8 +2477,8 @@ module Google
|
|
2483
2477
|
|
2484
2478
|
# Get a integration in the specified project.
|
2485
2479
|
# @param [String] name
|
2486
|
-
# Required. The version to retrieve. Format: projects/`project`/
|
2487
|
-
# integration`/versions/`version`
|
2480
|
+
# Required. The version to retrieve. Format: projects/`project`/locations/`
|
2481
|
+
# location`/integrations/`integration`/versions/`version`
|
2488
2482
|
# @param [String] fields
|
2489
2483
|
# Selector specifying which fields to include in a partial response.
|
2490
2484
|
# @param [String] quota_user
|
@@ -2546,12 +2540,12 @@ module Google
|
|
2546
2540
|
# Returns the list of all integration versions in the specified project.
|
2547
2541
|
# @param [String] parent
|
2548
2542
|
# Required. The parent resource where this version will be created. Format:
|
2549
|
-
# projects/`project`/integrations/`integration`
|
2550
|
-
# 1. projects//locations//integrations/,
|
2551
|
-
# for a particular integration". 2.
|
2552
|
-
# "List versions (with filter) for
|
2553
|
-
# projects//locations/-/integrations/-
|
2554
|
-
# a client".
|
2543
|
+
# projects/`project`/locations/`location`/integrations/`integration`
|
2544
|
+
# Specifically, when parent equals: 1. projects//locations//integrations/,
|
2545
|
+
# Meaning: "List versions (with filter) for a particular integration". 2.
|
2546
|
+
# projects//locations//integrations/- Meaning: "List versions (with filter) for
|
2547
|
+
# a client within a particular region". 3. projects//locations/-/integrations/-
|
2548
|
+
# Meaning: "List versions (with filter) for a client".
|
2555
2549
|
# @param [String] field_mask
|
2556
2550
|
# The field mask which specifies the particular data to be returned.
|
2557
2551
|
# @param [String] filter
|
@@ -2651,8 +2645,8 @@ module Google
|
|
2651
2645
|
# last_modified_timestamp, last_modified_by. Any existing lock is on this
|
2652
2646
|
# integration is released.
|
2653
2647
|
# @param [String] name
|
2654
|
-
# Required. The version to publish. Format: projects/`project`/
|
2655
|
-
# integration`/versions/`version`
|
2648
|
+
# Required. The version to publish. Format: projects/`project`/locations/`
|
2649
|
+
# location`/integrations/`integration`/versions/`version`
|
2656
2650
|
# @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaPublishIntegrationVersionRequest] google_cloud_integrations_v1alpha_publish_integration_version_request_object
|
2657
2651
|
# @param [String] fields
|
2658
2652
|
# Selector specifying which fields to include in a partial response.
|
@@ -2696,7 +2690,7 @@ module Google
|
|
2696
2690
|
# fields updated include last_modified_timestamp, last_modified_by.
|
2697
2691
|
# @param [String] integration_version
|
2698
2692
|
# Required. The version to take over edit lock. Format: projects/`project`/
|
2699
|
-
# integrations/`integration`/versions/`version`
|
2693
|
+
# locations/`location`/integrations/`integration`/versions/`version`
|
2700
2694
|
# @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaTakeoverEditLockRequest] google_cloud_integrations_v1alpha_takeover_edit_lock_request_object
|
2701
2695
|
# @param [String] fields
|
2702
2696
|
# Selector specifying which fields to include in a partial response.
|
@@ -2765,8 +2759,8 @@ module Google
|
|
2765
2759
|
# input in a string format, which holds the complete representation of the
|
2766
2760
|
# IntegrationVersion content.
|
2767
2761
|
# @param [String] parent
|
2768
|
-
# Required. The version to upload. Format: projects/`project`/
|
2769
|
-
# integration`
|
2762
|
+
# Required. The version to upload. Format: projects/`project`/locations/`
|
2763
|
+
# location`/integrations/`integration`
|
2770
2764
|
# @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaUploadIntegrationVersionRequest] google_cloud_integrations_v1alpha_upload_integration_version_request_object
|
2771
2765
|
# @param [String] fields
|
2772
2766
|
# Selector specifying which fields to include in a partial response.
|
@@ -2801,8 +2795,8 @@ module Google
|
|
2801
2795
|
# is thrown. If validation fails a CanonicalCodeException is thrown. If there
|
2802
2796
|
# was no failure an empty response is returned.
|
2803
2797
|
# @param [String] name
|
2804
|
-
# Required. The version to validate. Format: projects/`project`/
|
2805
|
-
# integration`/versions/`version`
|
2798
|
+
# Required. The version to validate. Format: projects/`project`/locations/`
|
2799
|
+
# location`/integrations/`integration`/versions/`version`
|
2806
2800
|
# @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaValidateIntegrationVersionRequest] google_cloud_integrations_v1alpha_validate_integration_version_request_object
|
2807
2801
|
# @param [String] fields
|
2808
2802
|
# Selector specifying which fields to include in a partial response.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-integrations_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.9.
|
19
|
+
version: 0.9.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.9.
|
29
|
+
version: 0.9.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-integrations_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1alpha/v0.2.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-integrations_v1alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|