Example #1
0
        /// <summary>
        /// Fetch a Network Access Profile instance from your account.
        /// </summary>
        /// <param name="pathSid"> The SID that identifies the resource to fetch </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of NetworkAccessProfile </returns>
        public static async System.Threading.Tasks.Task <NetworkAccessProfileResource> FetchAsync(string pathSid,
                                                                                                  ITwilioRestClient client = null)
        {
            var options = new FetchNetworkAccessProfileOptions(pathSid);

            return(await FetchAsync(options, client));
        }
Example #2
0
        /// <summary>
        /// Fetch a Network Access Profile instance from your account.
        /// </summary>
        /// <param name="options"> Fetch NetworkAccessProfile parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of NetworkAccessProfile </returns>
        public static NetworkAccessProfileResource Fetch(FetchNetworkAccessProfileOptions options,
                                                         ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildFetchRequest(options, client));

            return(FromJson(response.Content));
        }
Example #3
0
 private static Request BuildFetchRequest(FetchNetworkAccessProfileOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Get,
                Rest.Domain.Supersim,
                "/v1/NetworkAccessProfiles/" + options.PathSid + "",
                queryParams: options.GetParams()
                ));
 }
Example #4
0
        /// <summary>
        /// Fetch a Network Access Profile instance from your account.
        /// </summary>
        /// <param name="pathSid"> The SID that identifies the resource to fetch </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of NetworkAccessProfile </returns>
        public static NetworkAccessProfileResource Fetch(string pathSid, ITwilioRestClient client = null)
        {
            var options = new FetchNetworkAccessProfileOptions(pathSid);

            return(Fetch(options, client));
        }
Example #5
0
        /// <summary>
        /// Fetch a Network Access Profile instance from your account.
        /// </summary>
        /// <param name="options"> Fetch NetworkAccessProfile parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of NetworkAccessProfile </returns>
        public static async System.Threading.Tasks.Task <NetworkAccessProfileResource> FetchAsync(FetchNetworkAccessProfileOptions options,
                                                                                                  ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildFetchRequest(options, client));

            return(FromJson(response.Content));
        }