protected override void ProcessRecord() { base.ProcessRecord(); GetTermRelationshipRequest request; try { request = new GetTermRelationshipRequest { CatalogId = CatalogId, GlossaryKey = GlossaryKey, TermKey = TermKey, TermRelationshipKey = TermRelationshipKey, Fields = Fields, OpcRequestId = OpcRequestId }; HandleOutput(request); FinishProcessing(response); } catch (Exception ex) { TerminatingErrorDuringExecution(ex); } }
private void HandleOutput(GetTermRelationshipRequest request) { var waiterConfig = new WaiterConfiguration { MaxAttempts = MaxWaitAttempts, GetNextDelayInSeconds = (_) => WaitIntervalSeconds }; switch (ParameterSetName) { case LifecycleStateParamSet: response = client.Waiters.ForTermRelationship(request, waiterConfig, WaitForLifecycleState).Execute(); break; case Default: response = client.GetTermRelationship(request).GetAwaiter().GetResult(); break; } WriteOutput(response, response.TermRelationship); }
/// <summary> /// Creates a waiter using the provided configuration. /// </summary> /// <param name="request">Request to send.</param> /// <param name="config">Wait Configuration</param> /// <param name="targetStates">Desired resource states. If multiple states are provided then the waiter will return once the resource reaches any of the provided states</param> /// <returns>a new Oci.common.Waiter instance</returns> public Waiter <GetTermRelationshipRequest, GetTermRelationshipResponse> ForTermRelationship(GetTermRelationshipRequest request, WaiterConfiguration config, params LifecycleState[] targetStates) { var agent = new WaiterAgent <GetTermRelationshipRequest, GetTermRelationshipResponse>( request, request => client.GetTermRelationship(request), response => targetStates.Contains(response.TermRelationship.LifecycleState.Value), targetStates.Contains(LifecycleState.Deleted) ); return(new Waiter <GetTermRelationshipRequest, GetTermRelationshipResponse>(config, agent)); }
/// <summary> /// Creates a waiter using default wait configuration. /// </summary> /// <param name="request">Request to send.</param> /// <param name="targetStates">Desired resource states. If multiple states are provided then the waiter will return once the resource reaches any of the provided states</param> /// <returns>a new Oci.common.Waiter instance</returns> public Waiter <GetTermRelationshipRequest, GetTermRelationshipResponse> ForTermRelationship(GetTermRelationshipRequest request, params LifecycleState[] targetStates) { return(this.ForTermRelationship(request, WaiterConfiguration.DefaultWaiterConfiguration, targetStates)); }