Exemplo n.º 1
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListDataAssetsRequest request;

            try
            {
                request = new ListDataAssetsRequest
                {
                    WorkspaceId  = WorkspaceId,
                    Page         = Page,
                    Limit        = Limit,
                    Fields       = Fields,
                    Type         = Type,
                    SortBy       = SortBy,
                    SortOrder    = SortOrder,
                    Name         = Name,
                    OpcRequestId = OpcRequestId
                };
                IEnumerable <ListDataAssetsResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.DataAssetSummaryCollection, true);
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
 /// <summary>
 /// Creates a new enumerable which will iterate over the responses received from the ListDataAssets operation. This enumerable
 /// will fetch more data from the server as needed.
 /// </summary>
 /// <param name="request">The request object containing the details to send</param>
 /// <param name="retryConfiguration">The configuration for retrying, may be null</param>
 /// <param name="cancellationToken">The cancellation token object</param>
 /// <returns>The enumerator, which supports a simple iteration over a collection of a specified type</returns>
 public IEnumerable <ListDataAssetsResponse> ListDataAssetsResponseEnumerator(ListDataAssetsRequest request, Common.Retry.RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
 {
     return(new Common.Utils.ResponseEnumerable <ListDataAssetsRequest, ListDataAssetsResponse>(
                response => response.OpcNextPage,
                input =>
     {
         if (!string.IsNullOrEmpty(input))
         {
             request.Page = input;
         }
         return request;
     },
                request => client.ListDataAssets(request, retryConfiguration, cancellationToken)
                ));
 }
Exemplo n.º 3
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListDataAssetsRequest request;

            try
            {
                request = new ListDataAssetsRequest
                {
                    CatalogId           = CatalogId,
                    DisplayName         = DisplayName,
                    DisplayNameContains = DisplayNameContains,
                    LifecycleState      = LifecycleState,
                    TimeCreated         = TimeCreated,
                    TimeUpdated         = TimeUpdated,
                    CreatedById         = CreatedById,
                    UpdatedById         = UpdatedById,
                    ExternalKey         = ExternalKey,
                    TypeKey             = TypeKey,
                    Fields       = Fields,
                    SortBy       = SortBy,
                    SortOrder    = SortOrder,
                    Limit        = Limit,
                    Page         = Page,
                    OpcRequestId = OpcRequestId
                };
                IEnumerable <ListDataAssetsResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.DataAssetCollection, true);
                }
                if (!ParameterSetName.Equals(AllPageSet) && !ParameterSetName.Equals(LimitSet) && response.OpcNextPage != null)
                {
                    WriteWarning("This operation supports pagination and not all resources were returned. Re-run using the -All option to auto paginate and list all resources.");
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListDataAssetsRequest request;

            try
            {
                request = new ListDataAssetsRequest
                {
                    RegistryId          = RegistryId,
                    Page                = Page,
                    Limit               = Limit,
                    Fields              = Fields,
                    IncludeTypes        = IncludeTypes,
                    SortBy              = SortBy,
                    SortOrder           = SortOrder,
                    Name                = Name,
                    OpcRequestId        = OpcRequestId,
                    ExcludeTypes        = ExcludeTypes,
                    FavoritesQueryParam = FavoritesQueryParam,
                    FolderId            = FolderId,
                    EndpointIds         = EndpointIds,
                    ExcludeEndpointIds  = ExcludeEndpointIds
                };
                IEnumerable <ListDataAssetsResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.DataAssetSummaryCollection, true);
                }
                if (!ParameterSetName.Equals(AllPageSet) && !ParameterSetName.Equals(LimitSet) && response.OpcNextPage != null)
                {
                    WriteWarning("This operation supports pagination and not all resources were returned. Re-run using the -All option to auto paginate and list all resources.");
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
Exemplo n.º 5
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListDataAssetsRequest request;

            try
            {
                request = new ListDataAssetsRequest
                {
                    CatalogId           = CatalogId,
                    DisplayName         = DisplayName,
                    DisplayNameContains = DisplayNameContains,
                    LifecycleState      = LifecycleState,
                    TimeCreated         = TimeCreated,
                    TimeUpdated         = TimeUpdated,
                    CreatedById         = CreatedById,
                    UpdatedById         = UpdatedById,
                    ExternalKey         = ExternalKey,
                    TypeKey             = TypeKey,
                    Fields       = Fields,
                    SortBy       = SortBy,
                    SortOrder    = SortOrder,
                    Limit        = Limit,
                    Page         = Page,
                    OpcRequestId = OpcRequestId
                };
                IEnumerable <ListDataAssetsResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.DataAssetCollection, true);
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }