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

            try
            {
                request = new ListDrgAttachmentsRequest
                {
                    CompartmentId = CompartmentId,
                    VcnId         = VcnId,
                    DrgId         = DrgId,
                    Limit         = Limit,
                    Page          = Page
                };
                IEnumerable <ListDrgAttachmentsResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.Items, true);
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
Example #2
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListDrgAttachmentsRequest request;

            try
            {
                request = new ListDrgAttachmentsRequest
                {
                    CompartmentId   = CompartmentId,
                    VcnId           = VcnId,
                    DrgId           = DrgId,
                    Limit           = Limit,
                    Page            = Page,
                    NetworkId       = NetworkId,
                    AttachmentType  = AttachmentType,
                    DrgRouteTableId = DrgRouteTableId,
                    DisplayName     = DisplayName,
                    SortBy          = SortBy,
                    SortOrder       = SortOrder,
                    LifecycleState  = LifecycleState
                };
                IEnumerable <ListDrgAttachmentsResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.Items, 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);
            }
        }