Esempio n. 1
0
        /// <summary>
        /// Retrieve a list of all Fleets belonging to your account.
        /// </summary>
        ///
        /// <param name="pageSize"> Page size </param>
        /// <param name="limit"> Record limit </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of Fleet </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <FleetResource> > ReadAsync(int?pageSize = null, long?limit = null, ITwilioRestClient client = null)
        {
            var options = new ReadFleetOptions {
                PageSize = pageSize, Limit = limit
            };

            return(await ReadAsync(options, client));
        }
Esempio n. 2
0
        /// <summary>
        /// Retrieve a list of all Fleets belonging to your account.
        /// </summary>
        ///
        /// <param name="pageSize"> Page size </param>
        /// <param name="limit"> Record limit </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Fleet </returns>
        public static ResourceSet <FleetResource> Read(int?pageSize = null, long?limit = null, ITwilioRestClient client = null)
        {
            var options = new ReadFleetOptions {
                PageSize = pageSize, Limit = limit
            };

            return(Read(options, client));
        }
Esempio n. 3
0
        /// <summary>
        /// Retrieve a list of all Fleets belonging to your account.
        /// </summary>
        ///
        /// <param name="options"> Read Fleet parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Fleet </returns>
        public static ResourceSet <FleetResource> Read(ReadFleetOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildReadRequest(options, client));

            var page = Page <FleetResource> .FromJson("fleets", response.Content);

            return(new ResourceSet <FleetResource>(page, options, client));
        }
 private static Request BuildReadRequest(ReadFleetOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Get,
                Rest.Domain.Preview,
                "/DeployedDevices/Fleets",
                queryParams: options.GetParams()
                ));
 }
Esempio n. 5
0
        /// <summary>
        /// Retrieve a list of all Fleets belonging to your account.
        /// </summary>
        ///
        /// <param name="options"> Read Fleet parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of Fleet </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <FleetResource> > ReadAsync(ReadFleetOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildReadRequest(options, client));

            var page = Page <FleetResource> .FromJson("fleets", response.Content);

            return(new ResourceSet <FleetResource>(page, options, client));
        }