google-apis-integrations_v1 0.13.0 → 0.15.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: 6ae59990eff6e15573a3a18535a9012758c3e14d9310feef2a29cd1d9a2f9e6f
4
- data.tar.gz: 13d86a6a787e92a67bf9c465035061521773ba8c9e87d55af47d99f9eb0aa94d
3
+ metadata.gz: b22fb89dad9ea9294607c6de889dfd9743729b891a828ea5ef070360e60b9307
4
+ data.tar.gz: 198d8fd3cc38344ba182a0b1e4b8d012937ad51cbea91b018057b14e498340d5
5
5
  SHA512:
6
- metadata.gz: 41c12ccbb863af2afa8576d5aec794816116c95e16673d752f685d213df14a590147afd662ed2406847e0318fd94adbdedb4f5acc7bca276dfcc65bd551ddc81
7
- data.tar.gz: cdf93ac5cb1980cb9dd4c6bae519baa6cfc3e483d575f4c8498d0094cef7493586e0f8bc5051177bf130e39a123fc0201c9a80c7251fd187327883e815bfc9b0
6
+ metadata.gz: ce34385e2fe5fc11b05412376d5725cd25bcc463740b23e00abc772a31b63a37c0846e4356acdc198d837e39675fcfc9e9fecfbf8c12d114c265b72e92c72975
7
+ data.tar.gz: cc7139fbac7a3fac56be10ff40067bae17d5845beffb55403a0d0f3cc8d5a1955f17d07a46e01f90c20f729ff64c02d9c6f12287862a7051686f01fcc9324bb8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-integrations_v1
2
2
 
3
+ ### v0.15.0 (2025-06-29)
4
+
5
+ * Regenerated from discovery document revision 20250627
6
+
7
+ ### v0.14.0 (2025-06-15)
8
+
9
+ * Regenerated from discovery document revision 20250610
10
+
3
11
  ### v0.13.0 (2025-05-25)
4
12
 
5
13
  * Regenerated from discovery document revision 20250521
@@ -5531,7 +5531,7 @@ module Google
5531
5531
  # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfig]
5532
5532
  attr_accessor :eua_oauth_auth_config
5533
5533
 
5534
- # Eventing Configuration of a connection next: 18
5534
+ # Eventing Configuration of a connection next: 19
5535
5535
  # Corresponds to the JSON property `eventingConfig`
5536
5536
  # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1EventingConfig]
5537
5537
  attr_accessor :eventing_config
@@ -5913,7 +5913,7 @@ module Google
5913
5913
  end
5914
5914
  end
5915
5915
 
5916
- # Eventing Configuration of a connection next: 18
5916
+ # Eventing Configuration of a connection next: 19
5917
5917
  class GoogleCloudConnectorsV1EventingConfig
5918
5918
  include Google::Apis::Core::Hashable
5919
5919
 
@@ -5954,6 +5954,12 @@ module Google
5954
5954
  # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfig]
5955
5955
  attr_accessor :listener_auth_config
5956
5956
 
5957
+ # Optional. List of projects to be allowlisted for the service attachment
5958
+ # created in the tenant project for eventing ingress.
5959
+ # Corresponds to the JSON property `privateConnectivityAllowlistedProjects`
5960
+ # @return [Array<String>]
5961
+ attr_accessor :private_connectivity_allowlisted_projects
5962
+
5957
5963
  # Optional. Private Connectivity Enabled.
5958
5964
  # Corresponds to the JSON property `privateConnectivityEnabled`
5959
5965
  # @return [Boolean]
@@ -5988,6 +5994,7 @@ module Google
5988
5994
  @enrichment_enabled = args[:enrichment_enabled] if args.key?(:enrichment_enabled)
5989
5995
  @events_listener_ingress_endpoint = args[:events_listener_ingress_endpoint] if args.key?(:events_listener_ingress_endpoint)
5990
5996
  @listener_auth_config = args[:listener_auth_config] if args.key?(:listener_auth_config)
5997
+ @private_connectivity_allowlisted_projects = args[:private_connectivity_allowlisted_projects] if args.key?(:private_connectivity_allowlisted_projects)
5991
5998
  @private_connectivity_enabled = args[:private_connectivity_enabled] if args.key?(:private_connectivity_enabled)
5992
5999
  @proxy_destination_config = args[:proxy_destination_config] if args.key?(:proxy_destination_config)
5993
6000
  @registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config)
@@ -6972,6 +6979,51 @@ module Google
6972
6979
  end
6973
6980
  end
6974
6981
 
6982
+ # Request for the ChangeCustomerConfig rpc
6983
+ class GoogleCloudIntegrationsV1alphaChangeCustomerConfigRequest
6984
+ include Google::Apis::Core::Hashable
6985
+
6986
+ # Customer configuration information for the given client
6987
+ # Corresponds to the JSON property `customerConfig`
6988
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig]
6989
+ attr_accessor :customer_config
6990
+
6991
+ # Required. Field mask specifying the fields in the customer config that have
6992
+ # been modified and must be updated. If absent or empty, no fields are updated.
6993
+ # Corresponds to the JSON property `updateMask`
6994
+ # @return [String]
6995
+ attr_accessor :update_mask
6996
+
6997
+ def initialize(**args)
6998
+ update!(**args)
6999
+ end
7000
+
7001
+ # Update properties of this object
7002
+ def update!(**args)
7003
+ @customer_config = args[:customer_config] if args.key?(:customer_config)
7004
+ @update_mask = args[:update_mask] if args.key?(:update_mask)
7005
+ end
7006
+ end
7007
+
7008
+ # Response for the ChangeCustomerConfig rpc
7009
+ class GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse
7010
+ include Google::Apis::Core::Hashable
7011
+
7012
+ # Customer configuration information for the given client
7013
+ # Corresponds to the JSON property `customerConfig`
7014
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig]
7015
+ attr_accessor :customer_config
7016
+
7017
+ def initialize(**args)
7018
+ update!(**args)
7019
+ end
7020
+
7021
+ # Update properties of this object
7022
+ def update!(**args)
7023
+ @customer_config = args[:customer_config] if args.key?(:customer_config)
7024
+ end
7025
+ end
7026
+
6975
7027
  # Contains client certificate information
6976
7028
  class GoogleCloudIntegrationsV1alphaClientCertificate
6977
7029
  include Google::Apis::Core::Hashable
@@ -7057,12 +7109,17 @@ module Google
7057
7109
  # @return [String]
7058
7110
  attr_accessor :create_time
7059
7111
 
7112
+ # Customer configuration information for the given client
7113
+ # Corresponds to the JSON property `customerConfig`
7114
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig]
7115
+ attr_accessor :customer_config
7116
+
7060
7117
  # Description of what the client is used for
7061
7118
  # Corresponds to the JSON property `description`
7062
7119
  # @return [String]
7063
7120
  attr_accessor :description
7064
7121
 
7065
- # Optional. Indicates the client enables making HTTP call.
7122
+ # Optional.
7066
7123
  # Corresponds to the JSON property `enableHttpCall`
7067
7124
  # @return [Boolean]
7068
7125
  attr_accessor :enable_http_call
@@ -7075,14 +7132,13 @@ module Google
7075
7132
  attr_accessor :enable_internal_ip
7076
7133
  alias_method :enable_internal_ip?, :enable_internal_ip
7077
7134
 
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.
7135
+ # Optional.
7080
7136
  # Corresponds to the JSON property `enableManagedAiFeatures`
7081
7137
  # @return [Boolean]
7082
7138
  attr_accessor :enable_managed_ai_features
7083
7139
  alias_method :enable_managed_ai_features?, :enable_managed_ai_features
7084
7140
 
7085
- # Optional. True if variable masking feature should be turned on for this region
7141
+ # Optional.
7086
7142
  # Corresponds to the JSON property `enableVariableMasking`
7087
7143
  # @return [Boolean]
7088
7144
  attr_accessor :enable_variable_masking
@@ -7114,9 +7170,7 @@ module Google
7114
7170
  # @return [String]
7115
7171
  attr_accessor :region
7116
7172
 
7117
- # Default run-as service account email, set up during project provision time,
7118
- # that will be used to generate auth token to be used in Connector task, Rest
7119
- # caller task, Cloud function task and Subworkflows.
7173
+ #
7120
7174
  # Corresponds to the JSON property `runAsServiceAccount`
7121
7175
  # @return [String]
7122
7176
  attr_accessor :run_as_service_account
@@ -7131,6 +7185,7 @@ module Google
7131
7185
  @client_state = args[:client_state] if args.key?(:client_state)
7132
7186
  @cloud_kms_config = args[:cloud_kms_config] if args.key?(:cloud_kms_config)
7133
7187
  @create_time = args[:create_time] if args.key?(:create_time)
7188
+ @customer_config = args[:customer_config] if args.key?(:customer_config)
7134
7189
  @description = args[:description] if args.key?(:description)
7135
7190
  @enable_http_call = args[:enable_http_call] if args.key?(:enable_http_call)
7136
7191
  @enable_internal_ip = args[:enable_internal_ip] if args.key?(:enable_internal_ip)
@@ -7524,6 +7579,56 @@ module Google
7524
7579
  end
7525
7580
  end
7526
7581
 
7582
+ # Customer configuration information for the given client
7583
+ class GoogleCloudIntegrationsV1alphaCustomerConfig
7584
+ include Google::Apis::Core::Hashable
7585
+
7586
+ # Configuration information for Client's Cloud KMS information
7587
+ # Corresponds to the JSON property `cloudKmsConfig`
7588
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig]
7589
+ attr_accessor :cloud_kms_config
7590
+
7591
+ # Optional. Indicates if the client should be allowed to make HTTP calls. True
7592
+ # if http call feature should be turned on for this region.
7593
+ # Corresponds to the JSON property `enableHttpCall`
7594
+ # @return [Boolean]
7595
+ attr_accessor :enable_http_call
7596
+ alias_method :enable_http_call?, :enable_http_call
7597
+
7598
+ # Optional. Indicates if the client should be allowed to use managed AI features,
7599
+ # i.e. using Cloud Companion APIs of the tenant project. This will allow the
7600
+ # customers to use features like Troubleshooting, OpenAPI spec enrichment, etc.
7601
+ # for free.
7602
+ # Corresponds to the JSON property `enableManagedAiFeatures`
7603
+ # @return [Boolean]
7604
+ attr_accessor :enable_managed_ai_features
7605
+ alias_method :enable_managed_ai_features?, :enable_managed_ai_features
7606
+
7607
+ # Optional. True if variable masking feature should be turned on for this region.
7608
+ # Corresponds to the JSON property `enableVariableMasking`
7609
+ # @return [Boolean]
7610
+ attr_accessor :enable_variable_masking
7611
+ alias_method :enable_variable_masking?, :enable_variable_masking
7612
+
7613
+ # Optional. Run-as service account to be updated for the provisioned client.
7614
+ # Corresponds to the JSON property `runAsServiceAccount`
7615
+ # @return [String]
7616
+ attr_accessor :run_as_service_account
7617
+
7618
+ def initialize(**args)
7619
+ update!(**args)
7620
+ end
7621
+
7622
+ # Update properties of this object
7623
+ def update!(**args)
7624
+ @cloud_kms_config = args[:cloud_kms_config] if args.key?(:cloud_kms_config)
7625
+ @enable_http_call = args[:enable_http_call] if args.key?(:enable_http_call)
7626
+ @enable_managed_ai_features = args[:enable_managed_ai_features] if args.key?(:enable_managed_ai_features)
7627
+ @enable_variable_masking = args[:enable_variable_masking] if args.key?(:enable_variable_masking)
7628
+ @run_as_service_account = args[:run_as_service_account] if args.key?(:run_as_service_account)
7629
+ end
7630
+ end
7631
+
7527
7632
  # Request for the Deprovision rpc
7528
7633
  class GoogleCloudIntegrationsV1alphaDeprovisionClientRequest
7529
7634
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module IntegrationsV1
18
18
  # Version of the google-apis-integrations_v1 gem
19
- GEM_VERSION = "0.13.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250521"
25
+ REVISION = "20250627"
26
26
  end
27
27
  end
28
28
  end
@@ -1018,6 +1018,18 @@ module Google
1018
1018
  include Google::Apis::Core::JsonObjectSupport
1019
1019
  end
1020
1020
 
1021
+ class GoogleCloudIntegrationsV1alphaChangeCustomerConfigRequest
1022
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1023
+
1024
+ include Google::Apis::Core::JsonObjectSupport
1025
+ end
1026
+
1027
+ class GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse
1028
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1029
+
1030
+ include Google::Apis::Core::JsonObjectSupport
1031
+ end
1032
+
1021
1033
  class GoogleCloudIntegrationsV1alphaClientCertificate
1022
1034
  class Representation < Google::Apis::Core::JsonRepresentation; end
1023
1035
 
@@ -1096,6 +1108,12 @@ module Google
1096
1108
  include Google::Apis::Core::JsonObjectSupport
1097
1109
  end
1098
1110
 
1111
+ class GoogleCloudIntegrationsV1alphaCustomerConfig
1112
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1113
+
1114
+ include Google::Apis::Core::JsonObjectSupport
1115
+ end
1116
+
1099
1117
  class GoogleCloudIntegrationsV1alphaDeprovisionClientRequest
1100
1118
  class Representation < Google::Apis::Core::JsonRepresentation; end
1101
1119
 
@@ -3531,6 +3549,7 @@ module Google
3531
3549
  property :events_listener_ingress_endpoint, as: 'eventsListenerIngressEndpoint'
3532
3550
  property :listener_auth_config, as: 'listenerAuthConfig', class: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfig::Representation
3533
3551
 
3552
+ collection :private_connectivity_allowlisted_projects, as: 'privateConnectivityAllowlistedProjects'
3534
3553
  property :private_connectivity_enabled, as: 'privateConnectivityEnabled'
3535
3554
  property :proxy_destination_config, as: 'proxyDestinationConfig', class: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1DestinationConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1DestinationConfig::Representation
3536
3555
 
@@ -3809,6 +3828,23 @@ module Google
3809
3828
  end
3810
3829
  end
3811
3830
 
3831
+ class GoogleCloudIntegrationsV1alphaChangeCustomerConfigRequest
3832
+ # @private
3833
+ class Representation < Google::Apis::Core::JsonRepresentation
3834
+ property :customer_config, as: 'customerConfig', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig::Representation
3835
+
3836
+ property :update_mask, as: 'updateMask'
3837
+ end
3838
+ end
3839
+
3840
+ class GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse
3841
+ # @private
3842
+ class Representation < Google::Apis::Core::JsonRepresentation
3843
+ property :customer_config, as: 'customerConfig', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig::Representation
3844
+
3845
+ end
3846
+ end
3847
+
3812
3848
  class GoogleCloudIntegrationsV1alphaClientCertificate
3813
3849
  # @private
3814
3850
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3826,6 +3862,8 @@ module Google
3826
3862
  property :cloud_kms_config, as: 'cloudKmsConfig', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig::Representation
3827
3863
 
3828
3864
  property :create_time, as: 'createTime'
3865
+ property :customer_config, as: 'customerConfig', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig::Representation
3866
+
3829
3867
  property :description, as: 'description'
3830
3868
  property :enable_http_call, as: 'enableHttpCall'
3831
3869
  property :enable_internal_ip, as: 'enableInternalIp'
@@ -3950,6 +3988,18 @@ module Google
3950
3988
  end
3951
3989
  end
3952
3990
 
3991
+ class GoogleCloudIntegrationsV1alphaCustomerConfig
3992
+ # @private
3993
+ class Representation < Google::Apis::Core::JsonRepresentation
3994
+ property :cloud_kms_config, as: 'cloudKmsConfig', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig::Representation
3995
+
3996
+ property :enable_http_call, as: 'enableHttpCall'
3997
+ property :enable_managed_ai_features, as: 'enableManagedAiFeatures'
3998
+ property :enable_variable_masking, as: 'enableVariableMasking'
3999
+ property :run_as_service_account, as: 'runAsServiceAccount'
4000
+ end
4001
+ end
4002
+
3953
4003
  class GoogleCloudIntegrationsV1alphaDeprovisionClientRequest
3954
4004
  # @private
3955
4005
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -725,6 +725,40 @@ module Google
725
725
  execute_or_queue_command(command, &block)
726
726
  end
727
727
 
728
+ # Updates the client customer configuration for the given project and location
729
+ # resource name
730
+ # @param [String] parent
731
+ # Required. Required: Format - projects/`project`/locations/`location`
732
+ # @param [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaChangeCustomerConfigRequest] google_cloud_integrations_v1alpha_change_customer_config_request_object
733
+ # @param [String] fields
734
+ # Selector specifying which fields to include in a partial response.
735
+ # @param [String] quota_user
736
+ # Available to use for quota purposes for server-side applications. Can be any
737
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
738
+ # @param [Google::Apis::RequestOptions] options
739
+ # Request-specific options
740
+ #
741
+ # @yield [result, err] Result & error if block supplied
742
+ # @yieldparam result [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse] parsed result object
743
+ # @yieldparam err [StandardError] error object if request failed
744
+ #
745
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse]
746
+ #
747
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
748
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
749
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
750
+ def change_project_location_client_config(parent, google_cloud_integrations_v1alpha_change_customer_config_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
751
+ command = make_simple_command(:post, 'v1/{+parent}/clients:changeConfig', options)
752
+ command.request_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaChangeCustomerConfigRequest::Representation
753
+ command.request_object = google_cloud_integrations_v1alpha_change_customer_config_request_object
754
+ command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse::Representation
755
+ command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse
756
+ command.params['parent'] = parent unless parent.nil?
757
+ command.query['fields'] = fields unless fields.nil?
758
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
759
+ execute_or_queue_command(command, &block)
760
+ end
761
+
728
762
  # Perform the deprovisioning steps to disable a user GCP project to use IP and
729
763
  # purge all related data in a wipeout-compliant way.
730
764
  # @param [String] parent
@@ -5115,6 +5149,8 @@ module Google
5115
5149
  # templates and return a list of templates based on the user filter.
5116
5150
  # @param [String] parent
5117
5151
  # Required. The client, which owns this collection of Templates.
5152
+ # @param [Boolean] enable_natural_language_query_understanding
5153
+ # Optional. Whether to enable natural language query understanding.
5118
5154
  # @param [String] filter
5119
5155
  # Optional. Standard filter field to filter templates. client_id filter won't be
5120
5156
  # supported and will restrict to templates belonging to the current client only.
@@ -5127,6 +5163,8 @@ module Google
5127
5163
  # The maximum value is 1000; values above 1000 will be coerced to 1000.
5128
5164
  # @param [String] page_token
5129
5165
  # Optional. The token returned in the previous response.
5166
+ # @param [String] query
5167
+ # Optional. The search query that will be passed to Vertex search service.
5130
5168
  # @param [String] read_mask
5131
5169
  # Optional. The mask which specifies fields that need to be returned in the
5132
5170
  # template's response.
@@ -5147,15 +5185,17 @@ module Google
5147
5185
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5148
5186
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5149
5187
  # @raise [Google::Apis::AuthorizationError] Authorization is required
5150
- def search_project_location_templates(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, read_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
5188
+ def search_project_location_templates(parent, enable_natural_language_query_understanding: nil, filter: nil, order_by: nil, page_size: nil, page_token: nil, query: nil, read_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
5151
5189
  command = make_simple_command(:get, 'v1/{+parent}/templates:search', options)
5152
5190
  command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaSearchTemplatesResponse::Representation
5153
5191
  command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaSearchTemplatesResponse
5154
5192
  command.params['parent'] = parent unless parent.nil?
5193
+ command.query['enableNaturalLanguageQueryUnderstanding'] = enable_natural_language_query_understanding unless enable_natural_language_query_understanding.nil?
5155
5194
  command.query['filter'] = filter unless filter.nil?
5156
5195
  command.query['orderBy'] = order_by unless order_by.nil?
5157
5196
  command.query['pageSize'] = page_size unless page_size.nil?
5158
5197
  command.query['pageToken'] = page_token unless page_token.nil?
5198
+ command.query['query'] = query unless query.nil?
5159
5199
  command.query['readMask'] = read_mask unless read_mask.nil?
5160
5200
  command.query['fields'] = fields unless fields.nil?
5161
5201
  command.query['quotaUser'] = quota_user unless quota_user.nil?
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.13.0
4
+ version: 0.15.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.13.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1/v0.15.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: