google-apis-integrations_v1alpha 0.1.0 → 0.3.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: d4eb55b875939103a0ac25329fd820828238d3caa71322ea57c031dc99adf24c
4
- data.tar.gz: d681766689e1ab6ee758941d6dadb7ffdc166e74214eb20b83dd262567c37748
3
+ metadata.gz: b95b026a57ba8746ad52ad43f1cc2a6c066cb700e719d5754acf4f81e64ec97f
4
+ data.tar.gz: 5dea2426135f7d76a718faf0e8c12776a8f7743fb448d90724c7397d63b17759
5
5
  SHA512:
6
- metadata.gz: db38d1f140846e1b20bb085a26a93d4121b047969d2be55fbdc229f054a9c491f0bca36189452d68364e1a2444c96cb6963bcd389562f776f14a82ac9335ac1b
7
- data.tar.gz: 189ba5670f9f734b70c8a6bf8ab92adfa9e17f3a784ea867d9d801fa44fe502a20372ef0c6af13af6481cf900f49d8693cf0cffece57688d1fcd71f57391dd81
6
+ metadata.gz: 76fa717063fa8ad050c38465afaee836572f37040a395cbf4ad2b6ed6ad4828853852d405e786de9ccef61bc0b84b05cd31268fb53bca1ee198a58a40b88c069
7
+ data.tar.gz: c7337d0e4afb34727bb4f168c57f86572e7fadbe69e32ab924ce143374353b2fb06d2cd213a5bd925c815996cfc0bc7a3bf6df188b334ed8e16adc1fc31a08fe
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-integrations_v1alpha
2
2
 
3
+ ### v0.3.0 (2022-11-25)
4
+
5
+ * Regenerated from discovery document revision 20221122
6
+
7
+ ### v0.2.0 (2022-10-28)
8
+
9
+ * Regenerated from discovery document revision 20221025
10
+ * Regenerated using generator version 0.11.0
11
+
3
12
  ### v0.1.0 (2022-09-22)
4
13
 
5
14
  * 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](http://www.google.com) may provide guidance regarding the preferred client library to use.
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: 16
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
@@ -6245,8 +6323,9 @@ module Google
6245
6323
  # @return [String]
6246
6324
  attr_accessor :request_id
6247
6325
 
6248
- # Optional. Matched against all `@link TriggerConfig`s across all integrations.
6249
- # i.e. TriggerConfig.trigger_id.equals(trigger_id)
6326
+ # Required. Matched against all `@link TriggerConfig`s across all integrations.
6327
+ # i.e. TriggerConfig.trigger_id.equals(trigger_id). The trigger_id is in the
6328
+ # format of `api_trigger/TRIGGER_NAME`.
6250
6329
  # Corresponds to the JSON property `triggerId`
6251
6330
  # @return [String]
6252
6331
  attr_accessor :trigger_id
@@ -9008,6 +9087,11 @@ module Google
9008
9087
  # @return [Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationAlertConfig>]
9009
9088
  attr_accessor :alert_config
9010
9089
 
9090
+ # Cloud Scheduler Trigger configuration
9091
+ # Corresponds to the JSON property `cloudSchedulerConfig`
9092
+ # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCloudSchedulerConfig]
9093
+ attr_accessor :cloud_scheduler_config
9094
+
9011
9095
  # Optional. User-provided description intended to give additional business
9012
9096
  # context about the task.
9013
9097
  # Corresponds to the JSON property `description`
@@ -9062,6 +9146,7 @@ module Google
9062
9146
  # Update properties of this object
9063
9147
  def update!(**args)
9064
9148
  @alert_config = args[:alert_config] if args.key?(:alert_config)
9149
+ @cloud_scheduler_config = args[:cloud_scheduler_config] if args.key?(:cloud_scheduler_config)
9065
9150
  @description = args[:description] if args.key?(:description)
9066
9151
  @label = args[:label] if args.key?(:label)
9067
9152
  @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.1.0"
19
+ GEM_VERSION = "0.3.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220913"
25
+ REVISION = "20221122"
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 http://www.google.com
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,
@@ -822,7 +822,9 @@ module Google
822
822
  execute_or_queue_command(command, &block)
823
823
  end
824
824
 
825
- # Lists the status of the integration executions.
825
+ # Lists the results of all the integration executions. The response includes the
826
+ # same information as the [execution log](https://cloud.google.com/application-
827
+ # integration/docs/viewing-logs) in the Integration UI.
826
828
  # @param [String] parent
827
829
  # Required. The parent resource name of the integration execution.
828
830
  # @param [String] filter
@@ -854,8 +856,6 @@ module Google
854
856
  # Start timestamp.
855
857
  # @param [Array<String>, String] filter_params_task_statuses
856
858
  # List of possible task statuses.
857
- # @param [String] filter_params_trigger_id
858
- # Trigger id.
859
859
  # @param [String] filter_params_workflow_name
860
860
  # Workflow name.
861
861
  # @param [String] order_by
@@ -895,7 +895,7 @@ module Google
895
895
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
896
896
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
897
897
  # @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, filter_params_trigger_id: 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)
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, 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
899
  command = make_simple_command(:get, 'v1alpha/{+parent}/executions', options)
900
900
  command.response_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListExecutionsResponse::Representation
901
901
  command.response_class = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListExecutionsResponse
@@ -912,7 +912,6 @@ module Google
912
912
  command.query['filterParams.parameterValue'] = filter_params_parameter_value unless filter_params_parameter_value.nil?
913
913
  command.query['filterParams.startTime'] = filter_params_start_time unless filter_params_start_time.nil?
914
914
  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
915
  command.query['filterParams.workflowName'] = filter_params_workflow_name unless filter_params_workflow_name.nil?
917
916
  command.query['orderBy'] = order_by unless order_by.nil?
918
917
  command.query['pageSize'] = page_size unless page_size.nil?
@@ -935,8 +934,8 @@ module Google
935
934
  # released when Archiving a integration. Currently, there is no unarchive
936
935
  # mechanism.
937
936
  # @param [String] name
938
- # Required. The version to archive. Format: projects/`project`/integrations/`
939
- # integration`/versions/`version`
937
+ # Required. The version to archive. Format: projects/`project`/locations/`
938
+ # location`/integrations/`integration`/versions/`version`
940
939
  # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaArchiveIntegrationVersionRequest] google_cloud_integrations_v1alpha_archive_integration_version_request_object
941
940
  # @param [String] fields
942
941
  # Selector specifying which fields to include in a partial response.
@@ -970,7 +969,7 @@ module Google
970
969
  # Create a integration with a draft version in the specified project.
971
970
  # @param [String] parent
972
971
  # Required. The parent resource where this version will be created. Format:
973
- # projects/`project`/integrations/`integration`
972
+ # projects/`project`/locations/`location`/integrations/`integration`
974
973
  # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationVersion] google_cloud_integrations_v1alpha_integration_version_object
975
974
  # @param [Boolean] new_integration
976
975
  # Set this flag to true, if draft version is to be created for a brand new
@@ -1012,8 +1011,8 @@ module Google
1012
1011
  # tags do not change. This RPC throws an exception if the version being snapshot
1013
1012
  # is not ACTIVE. Audit fields added include action, action_by, action_timestamp.
1014
1013
  # @param [String] name
1015
- # Required. The version to deactivate. Format: projects/`project`/integrations/`
1016
- # integration`/versions/`version`
1014
+ # Required. The version to deactivate. Format: projects/`project`/locations/`
1015
+ # location`/integrations/`integration`/versions/`version`
1017
1016
  # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaDeactivateIntegrationVersionRequest] google_cloud_integrations_v1alpha_deactivate_integration_version_request_object
1018
1017
  # @param [String] fields
1019
1018
  # Selector specifying which fields to include in a partial response.
@@ -1046,8 +1045,8 @@ module Google
1046
1045
 
1047
1046
  # Get a integration in the specified project.
1048
1047
  # @param [String] name
1049
- # Required. The version to retrieve. Format: projects/`project`/integrations/`
1050
- # integration`/versions/`version`
1048
+ # Required. The version to retrieve. Format: projects/`project`/locations/`
1049
+ # location`/integrations/`integration`/versions/`version`
1051
1050
  # @param [String] fields
1052
1051
  # Selector specifying which fields to include in a partial response.
1053
1052
  # @param [String] quota_user
@@ -1078,12 +1077,12 @@ module Google
1078
1077
  # Returns the list of all integration versions in the specified project.
1079
1078
  # @param [String] parent
1080
1079
  # Required. The parent resource where this version will be created. Format:
1081
- # projects/`project`/integrations/`integration` Specifically, when parent equals:
1082
- # 1. projects//locations//integrations/, Meaning: "List versions (with filter)
1083
- # for a particular integration". 2. projects//locations//integrations/- Meaning:
1084
- # "List versions (with filter) for a client within a particular region". 3.
1085
- # projects//locations/-/integrations/- Meaning: "List versions (with filter) for
1086
- # a client".
1080
+ # projects/`project`/locations/`location`/integrations/`integration`
1081
+ # Specifically, when parent equals: 1. projects//locations//integrations/,
1082
+ # Meaning: "List versions (with filter) for a particular integration". 2.
1083
+ # projects//locations//integrations/- Meaning: "List versions (with filter) for
1084
+ # a client within a particular region". 3. projects//locations/-/integrations/-
1085
+ # Meaning: "List versions (with filter) for a client".
1087
1086
  # @param [String] field_mask
1088
1087
  # The field mask which specifies the particular data to be returned.
1089
1088
  # @param [String] filter
@@ -1183,8 +1182,8 @@ module Google
1183
1182
  # last_modified_timestamp, last_modified_by. Any existing lock is on this
1184
1183
  # integration is released.
1185
1184
  # @param [String] name
1186
- # Required. The version to publish. Format: projects/`project`/integrations/`
1187
- # integration`/versions/`version`
1185
+ # Required. The version to publish. Format: projects/`project`/locations/`
1186
+ # location`/integrations/`integration`/versions/`version`
1188
1187
  # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaPublishIntegrationVersionRequest] google_cloud_integrations_v1alpha_publish_integration_version_request_object
1189
1188
  # @param [String] fields
1190
1189
  # Selector specifying which fields to include in a partial response.
@@ -1228,7 +1227,7 @@ module Google
1228
1227
  # fields updated include last_modified_timestamp, last_modified_by.
1229
1228
  # @param [String] integration_version
1230
1229
  # Required. The version to take over edit lock. Format: projects/`project`/
1231
- # integrations/`integration`/versions/`version`
1230
+ # locations/`location`/integrations/`integration`/versions/`version`
1232
1231
  # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaTakeoverEditLockRequest] google_cloud_integrations_v1alpha_takeover_edit_lock_request_object
1233
1232
  # @param [String] fields
1234
1233
  # Selector specifying which fields to include in a partial response.
@@ -1263,8 +1262,8 @@ module Google
1263
1262
  # is thrown. If validation fails a CanonicalCodeException is thrown. If there
1264
1263
  # was no failure an empty response is returned.
1265
1264
  # @param [String] name
1266
- # Required. The version to validate. Format: projects/`project`/integrations/`
1267
- # integration`/versions/`version`
1265
+ # Required. The version to validate. Format: projects/`project`/locations/`
1266
+ # location`/integrations/`integration`/versions/`version`
1268
1267
  # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaValidateIntegrationVersionRequest] google_cloud_integrations_v1alpha_validate_integration_version_request_object
1269
1268
  # @param [String] fields
1270
1269
  # Selector specifying which fields to include in a partial response.
@@ -1806,8 +1805,8 @@ module Google
1806
1805
  # PROTECT WITH A VISIBILITY LABEL. THIS METHOD WILL BE MOVED TO A SEPARATE
1807
1806
  # SERVICE. Soft-deletes the bundle.
1808
1807
  # @param [String] name
1809
- # Required. The bundle to archive. Format: projects/`project`/integrations/`
1810
- # integration`
1808
+ # Required. The bundle to archive. Format: projects/`project`/locations/`
1809
+ # location`/integrations/`integration`
1811
1810
  # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaArchiveBundleRequest] google_cloud_integrations_v1alpha_archive_bundle_request_object
1812
1811
  # @param [String] fields
1813
1812
  # Selector specifying which fields to include in a partial response.
@@ -2061,7 +2060,9 @@ module Google
2061
2060
  execute_or_queue_command(command, &block)
2062
2061
  end
2063
2062
 
2064
- # Lists the status of the integration executions.
2063
+ # Lists the results of all the integration executions. The response includes the
2064
+ # same information as the [execution log](https://cloud.google.com/application-
2065
+ # integration/docs/viewing-logs) in the Integration UI.
2065
2066
  # @param [String] parent
2066
2067
  # Required. The parent resource name of the integration execution.
2067
2068
  # @param [String] filter
@@ -2093,8 +2094,6 @@ module Google
2093
2094
  # Start timestamp.
2094
2095
  # @param [Array<String>, String] filter_params_task_statuses
2095
2096
  # List of possible task statuses.
2096
- # @param [String] filter_params_trigger_id
2097
- # Trigger id.
2098
2097
  # @param [String] filter_params_workflow_name
2099
2098
  # Workflow name.
2100
2099
  # @param [String] order_by
@@ -2134,7 +2133,7 @@ module Google
2134
2133
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2135
2134
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2136
2135
  # @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, filter_params_trigger_id: 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)
2136
+ 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
2137
  command = make_simple_command(:get, 'v1alpha/{+parent}/executions', options)
2139
2138
  command.response_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListExecutionsResponse::Representation
2140
2139
  command.response_class = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListExecutionsResponse
@@ -2151,7 +2150,6 @@ module Google
2151
2150
  command.query['filterParams.parameterValue'] = filter_params_parameter_value unless filter_params_parameter_value.nil?
2152
2151
  command.query['filterParams.startTime'] = filter_params_start_time unless filter_params_start_time.nil?
2153
2152
  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
2153
  command.query['filterParams.workflowName'] = filter_params_workflow_name unless filter_params_workflow_name.nil?
2156
2154
  command.query['orderBy'] = order_by unless order_by.nil?
2157
2155
  command.query['pageSize'] = page_size unless page_size.nil?
@@ -2337,8 +2335,8 @@ module Google
2337
2335
  # released when Archiving a integration. Currently, there is no unarchive
2338
2336
  # mechanism.
2339
2337
  # @param [String] name
2340
- # Required. The version to archive. Format: projects/`project`/integrations/`
2341
- # integration`/versions/`version`
2338
+ # Required. The version to archive. Format: projects/`project`/locations/`
2339
+ # location`/integrations/`integration`/versions/`version`
2342
2340
  # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaArchiveIntegrationVersionRequest] google_cloud_integrations_v1alpha_archive_integration_version_request_object
2343
2341
  # @param [String] fields
2344
2342
  # Selector specifying which fields to include in a partial response.
@@ -2372,7 +2370,7 @@ module Google
2372
2370
  # Create a integration with a draft version in the specified project.
2373
2371
  # @param [String] parent
2374
2372
  # Required. The parent resource where this version will be created. Format:
2375
- # projects/`project`/integrations/`integration`
2373
+ # projects/`project`/locations/`location`/integrations/`integration`
2376
2374
  # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationVersion] google_cloud_integrations_v1alpha_integration_version_object
2377
2375
  # @param [Boolean] new_integration
2378
2376
  # Set this flag to true, if draft version is to be created for a brand new
@@ -2414,8 +2412,8 @@ module Google
2414
2412
  # tags do not change. This RPC throws an exception if the version being snapshot
2415
2413
  # is not ACTIVE. Audit fields added include action, action_by, action_timestamp.
2416
2414
  # @param [String] name
2417
- # Required. The version to deactivate. Format: projects/`project`/integrations/`
2418
- # integration`/versions/`version`
2415
+ # Required. The version to deactivate. Format: projects/`project`/locations/`
2416
+ # location`/integrations/`integration`/versions/`version`
2419
2417
  # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaDeactivateIntegrationVersionRequest] google_cloud_integrations_v1alpha_deactivate_integration_version_request_object
2420
2418
  # @param [String] fields
2421
2419
  # Selector specifying which fields to include in a partial response.
@@ -2449,8 +2447,8 @@ module Google
2449
2447
  # Downloads an integration. Retrieves the `IntegrationVersion` for a given `
2450
2448
  # integration_id` and returns the response as a string.
2451
2449
  # @param [String] name
2452
- # Required. The version to download. Format: projects/`project`/integrations/`
2453
- # integration`/versions/`version`
2450
+ # Required. The version to download. Format: projects/`project`/locations/`
2451
+ # location`/integrations/`integration`/versions/`version`
2454
2452
  # @param [String] file_format
2455
2453
  # File format for download request.
2456
2454
  # @param [String] fields
@@ -2483,8 +2481,8 @@ module Google
2483
2481
 
2484
2482
  # Get a integration in the specified project.
2485
2483
  # @param [String] name
2486
- # Required. The version to retrieve. Format: projects/`project`/integrations/`
2487
- # integration`/versions/`version`
2484
+ # Required. The version to retrieve. Format: projects/`project`/locations/`
2485
+ # location`/integrations/`integration`/versions/`version`
2488
2486
  # @param [String] fields
2489
2487
  # Selector specifying which fields to include in a partial response.
2490
2488
  # @param [String] quota_user
@@ -2546,12 +2544,12 @@ module Google
2546
2544
  # Returns the list of all integration versions in the specified project.
2547
2545
  # @param [String] parent
2548
2546
  # Required. The parent resource where this version will be created. Format:
2549
- # projects/`project`/integrations/`integration` Specifically, when parent equals:
2550
- # 1. projects//locations//integrations/, Meaning: "List versions (with filter)
2551
- # for a particular integration". 2. projects//locations//integrations/- Meaning:
2552
- # "List versions (with filter) for a client within a particular region". 3.
2553
- # projects//locations/-/integrations/- Meaning: "List versions (with filter) for
2554
- # a client".
2547
+ # projects/`project`/locations/`location`/integrations/`integration`
2548
+ # Specifically, when parent equals: 1. projects//locations//integrations/,
2549
+ # Meaning: "List versions (with filter) for a particular integration". 2.
2550
+ # projects//locations//integrations/- Meaning: "List versions (with filter) for
2551
+ # a client within a particular region". 3. projects//locations/-/integrations/-
2552
+ # Meaning: "List versions (with filter) for a client".
2555
2553
  # @param [String] field_mask
2556
2554
  # The field mask which specifies the particular data to be returned.
2557
2555
  # @param [String] filter
@@ -2651,8 +2649,8 @@ module Google
2651
2649
  # last_modified_timestamp, last_modified_by. Any existing lock is on this
2652
2650
  # integration is released.
2653
2651
  # @param [String] name
2654
- # Required. The version to publish. Format: projects/`project`/integrations/`
2655
- # integration`/versions/`version`
2652
+ # Required. The version to publish. Format: projects/`project`/locations/`
2653
+ # location`/integrations/`integration`/versions/`version`
2656
2654
  # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaPublishIntegrationVersionRequest] google_cloud_integrations_v1alpha_publish_integration_version_request_object
2657
2655
  # @param [String] fields
2658
2656
  # Selector specifying which fields to include in a partial response.
@@ -2696,7 +2694,7 @@ module Google
2696
2694
  # fields updated include last_modified_timestamp, last_modified_by.
2697
2695
  # @param [String] integration_version
2698
2696
  # Required. The version to take over edit lock. Format: projects/`project`/
2699
- # integrations/`integration`/versions/`version`
2697
+ # locations/`location`/integrations/`integration`/versions/`version`
2700
2698
  # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaTakeoverEditLockRequest] google_cloud_integrations_v1alpha_takeover_edit_lock_request_object
2701
2699
  # @param [String] fields
2702
2700
  # Selector specifying which fields to include in a partial response.
@@ -2765,8 +2763,8 @@ module Google
2765
2763
  # input in a string format, which holds the complete representation of the
2766
2764
  # IntegrationVersion content.
2767
2765
  # @param [String] parent
2768
- # Required. The version to upload. Format: projects/`project`/integrations/`
2769
- # integration`
2766
+ # Required. The version to upload. Format: projects/`project`/locations/`
2767
+ # location`/integrations/`integration`
2770
2768
  # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaUploadIntegrationVersionRequest] google_cloud_integrations_v1alpha_upload_integration_version_request_object
2771
2769
  # @param [String] fields
2772
2770
  # Selector specifying which fields to include in a partial response.
@@ -2801,8 +2799,8 @@ module Google
2801
2799
  # is thrown. If validation fails a CanonicalCodeException is thrown. If there
2802
2800
  # was no failure an empty response is returned.
2803
2801
  # @param [String] name
2804
- # Required. The version to validate. Format: projects/`project`/integrations/`
2805
- # integration`/versions/`version`
2802
+ # Required. The version to validate. Format: projects/`project`/locations/`
2803
+ # location`/integrations/`integration`/versions/`version`
2806
2804
  # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaValidateIntegrationVersionRequest] google_cloud_integrations_v1alpha_validate_integration_version_request_object
2807
2805
  # @param [String] fields
2808
2806
  # Selector specifying which fields to include in a partial response.
@@ -23,7 +23,7 @@ module Google
23
23
  #
24
24
  #
25
25
  #
26
- # @see http://www.google.com
26
+ # @see https://cloud.google.com/application-integration
27
27
  module IntegrationsV1alpha
28
28
  # Version of the Application Integration API this client connects to.
29
29
  # This is NOT the gem version.
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.1.0
4
+ version: 0.3.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-09-26 00:00:00.000000000 Z
11
+ date: 2022-12-12 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.0
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.0
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.1.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1alpha/v0.3.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: []