@@ -2603,6 +2603,11 @@ def push_workspace_git_commits(name, push_git_commits_request_object = nil, fiel
26032603 # @param [String] path
26042604 # Optional. The directory's full path including directory name, relative to the
26052605 # workspace root. If left unset, the workspace root is used.
2606+ # @param [String] view
2607+ # Optional. Specifies the metadata to return for each directory entry. If
2608+ # unspecified, the default is `DIRECTORY_CONTENTS_VIEW_BASIC`. Currently the `
2609+ # DIRECTORY_CONTENTS_VIEW_METADATA` view is not supported by CMEK-protected
2610+ # workspaces.
26062611 # @param [String] fields
26072612 # Selector specifying which fields to include in a partial response.
26082613 # @param [String] quota_user
@@ -2620,14 +2625,15 @@ def push_workspace_git_commits(name, push_git_commits_request_object = nil, fiel
26202625 # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
26212626 # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
26222627 # @raise [Google::Apis::AuthorizationError] Authorization is required
2623- def query_project_location_repository_workspace_directory_contents ( workspace , page_size : nil , page_token : nil , path : nil , fields : nil , quota_user : nil , options : nil , &block )
2628+ def query_project_location_repository_workspace_directory_contents ( workspace , page_size : nil , page_token : nil , path : nil , view : nil , fields : nil , quota_user : nil , options : nil , &block )
26242629 command = make_simple_command ( :get , 'v1beta1/{+workspace}:queryDirectoryContents' , options )
26252630 command . response_representation = Google ::Apis ::DataformV1beta1 ::QueryDirectoryContentsResponse ::Representation
26262631 command . response_class = Google ::Apis ::DataformV1beta1 ::QueryDirectoryContentsResponse
26272632 command . params [ 'workspace' ] = workspace unless workspace . nil?
26282633 command . query [ 'pageSize' ] = page_size unless page_size . nil?
26292634 command . query [ 'pageToken' ] = page_token unless page_token . nil?
26302635 command . query [ 'path' ] = path unless path . nil?
2636+ command . query [ 'view' ] = view unless view . nil?
26312637 command . query [ 'fields' ] = fields unless fields . nil?
26322638 command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
26332639 execute_or_queue_command ( command , &block )
0 commit comments