protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListFolderTagsRequest request;

            try
            {
                request = new ListFolderTagsRequest
                {
                    CatalogId      = CatalogId,
                    DataAssetKey   = DataAssetKey,
                    FolderKey      = FolderKey,
                    Name           = Name,
                    LifecycleState = LifecycleState,
                    TermKey        = TermKey,
                    TermPath       = TermPath,
                    TimeCreated    = TimeCreated,
                    CreatedById    = CreatedById,
                    Fields         = Fields,
                    SortBy         = SortBy,
                    SortOrder      = SortOrder,
                    Limit          = Limit,
                    Page           = Page,
                    OpcRequestId   = OpcRequestId
                };
                IEnumerable <ListFolderTagsResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.FolderTagCollection, 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);
            }
        }
Example #2
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListFolderTagsRequest request;

            try
            {
                request = new ListFolderTagsRequest
                {
                    CatalogId      = CatalogId,
                    DataAssetKey   = DataAssetKey,
                    FolderKey      = FolderKey,
                    Name           = Name,
                    LifecycleState = LifecycleState,
                    TermKey        = TermKey,
                    TermPath       = TermPath,
                    TimeCreated    = TimeCreated,
                    CreatedById    = CreatedById,
                    Fields         = Fields,
                    SortBy         = SortBy,
                    SortOrder      = SortOrder,
                    Limit          = Limit,
                    Page           = Page,
                    OpcRequestId   = OpcRequestId
                };
                IEnumerable <ListFolderTagsResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.FolderTagCollection, true);
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }