@@ -501,7 +501,7 @@ def listen_connection_event(resource_path, listen_event_request_object = nil, fi
501
501
# update the connection details: * `description` * `labels` * `connector_version`
502
502
# * `config_variables` * `auth_config` * `destination_configs` * `node_config` *
503
503
# `log_config` * `ssl_config` * `eventing_enablement_type` * `eventing_config` *
504
- # `auth_override_enabled`
504
+ # `auth_override_enabled` * `async_operations_enabled`
505
505
# @param [String] fields
506
506
# Selector specifying which fields to include in a partial response.
507
507
# @param [String] quota_user
@@ -1539,7 +1539,8 @@ def withdraw_custom_connector_version(name, withdraw_custom_connector_version_re
1539
1539
# @param [Google::Apis::ConnectorsV1::EndpointAttachment] endpoint_attachment_object
1540
1540
# @param [String] endpoint_attachment_id
1541
1541
# Required. Identifier to assign to the EndpointAttachment. Must be unique
1542
- # within scope of the parent resource.
1542
+ # within scope of the parent resource. The regex is: `^[a-z]([a-z0-9-]`0,61`[a-
1543
+ # z0-9])?$`.
1543
1544
# @param [String] fields
1544
1545
# Selector specifying which fields to include in a partial response.
1545
1546
# @param [String] quota_user
@@ -2714,9 +2715,6 @@ def fetch_project_location_provider_connector_version_auth_schema(name, view: ni
2714
2715
# Required. Resource name of the form: `projects/*/locations/*/providers/*/
2715
2716
# connectors/*/versions/*` Only global location is supported for
2716
2717
# ConnectorVersion resource.
2717
- # @param [String] schema_view
2718
- # Optional. Enum to control whether schema enrichment related fields should be
2719
- # included in the response.
2720
2718
# @param [String] view
2721
2719
# Specifies which fields of the ConnectorVersion are returned in the response.
2722
2720
# Defaults to `CUSTOMER` view.
@@ -2737,12 +2735,11 @@ def fetch_project_location_provider_connector_version_auth_schema(name, view: ni
2737
2735
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2738
2736
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2739
2737
# @raise [Google::Apis::AuthorizationError] Authorization is required
2740
- def get_project_location_provider_connector_version ( name , schema_view : nil , view : nil , fields : nil , quota_user : nil , options : nil , &block )
2738
+ def get_project_location_provider_connector_version ( name , view : nil , fields : nil , quota_user : nil , options : nil , &block )
2741
2739
command = make_simple_command ( :get , 'v1/{+name}' , options )
2742
2740
command . response_representation = Google ::Apis ::ConnectorsV1 ::ConnectorVersion ::Representation
2743
2741
command . response_class = Google ::Apis ::ConnectorsV1 ::ConnectorVersion
2744
2742
command . params [ 'name' ] = name unless name . nil?
2745
- command . query [ 'schemaView' ] = schema_view unless schema_view . nil?
2746
2743
command . query [ 'view' ] = view unless view . nil?
2747
2744
command . query [ 'fields' ] = fields unless fields . nil?
2748
2745
command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
@@ -2751,16 +2748,10 @@ def get_project_location_provider_connector_version(name, schema_view: nil, view
2751
2748
2752
2749
# Lists Connector Versions in a given project and location.
2753
2750
# @param [String] parent
2754
- # Required. Parent resource of the connectors, of the form: `projects/*/
2755
- # locations/*/providers/*/connectors/*` Only global location is supported for
2756
- # ConnectorVersion resource.
2757
2751
# @param [Fixnum] page_size
2758
2752
# Page size.
2759
2753
# @param [String] page_token
2760
2754
# Page token.
2761
- # @param [String] schema_view
2762
- # Optional. Enum to control whether schema enrichment related fields should be
2763
- # included in the response.
2764
2755
# @param [String] view
2765
2756
# Specifies which fields of the ConnectorVersion are returned in the response.
2766
2757
# Defaults to `BASIC` view.
@@ -2781,14 +2772,13 @@ def get_project_location_provider_connector_version(name, schema_view: nil, view
2781
2772
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2782
2773
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2783
2774
# @raise [Google::Apis::AuthorizationError] Authorization is required
2784
- def list_project_location_provider_connector_versions ( parent , page_size : nil , page_token : nil , schema_view : nil , view : nil , fields : nil , quota_user : nil , options : nil , &block )
2775
+ def list_project_location_provider_connector_versions ( parent , page_size : nil , page_token : nil , view : nil , fields : nil , quota_user : nil , options : nil , &block )
2785
2776
command = make_simple_command ( :get , 'v1/{+parent}/versions' , options )
2786
2777
command . response_representation = Google ::Apis ::ConnectorsV1 ::ListConnectorVersionsResponse ::Representation
2787
2778
command . response_class = Google ::Apis ::ConnectorsV1 ::ListConnectorVersionsResponse
2788
2779
command . params [ 'parent' ] = parent unless parent . nil?
2789
2780
command . query [ 'pageSize' ] = page_size unless page_size . nil?
2790
2781
command . query [ 'pageToken' ] = page_token unless page_token . nil?
2791
- command . query [ 'schemaView' ] = schema_view unless schema_view . nil?
2792
2782
command . query [ 'view' ] = view unless view . nil?
2793
2783
command . query [ 'fields' ] = fields unless fields . nil?
2794
2784
command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
0 commit comments