github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/plain-object-disable-defaults/dotnet/Outputs/KubeClientSettings.cs (about) 1 // *** WARNING: this file was generated by test. *** 2 // *** Do not edit by hand unless you're certain you know what you are doing! *** 3 4 using System; 5 using System.Collections.Generic; 6 using System.Collections.Immutable; 7 using System.Threading.Tasks; 8 using Pulumi.Serialization; 9 10 namespace Pulumi.Example.Outputs 11 { 12 13 /// <summary> 14 /// Options for tuning the Kubernetes client used by a Provider. 15 /// </summary> 16 [OutputType] 17 public sealed class KubeClientSettings 18 { 19 /// <summary> 20 /// Maximum burst for throttle. Default value is 10. 21 /// </summary> 22 public readonly int? Burst; 23 /// <summary> 24 /// Maximum queries per second (QPS) to the API server from this client. Default value is 5. 25 /// </summary> 26 public readonly double? Qps; 27 public readonly Outputs.KubeClientSettings? RecTest; 28 29 [OutputConstructor] 30 private KubeClientSettings( 31 int? burst, 32 33 double? qps, 34 35 Outputs.KubeClientSettings? recTest) 36 { 37 Burst = burst; 38 Qps = qps; 39 RecTest = recTest; 40 } 41 } 42 }