pulumi/tests/testdata/codegen/kubernetes20/dotnet/Inputs/KubeClientSettingsArgs.cs

31 lines
990 B
C#

// *** WARNING: this file was generated by test. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Threading.Tasks;
using Pulumi.Serialization;
namespace Pulumi.Kubernetes.Types.Inputs.Provider
{
/// <summary>
/// Options for tuning the Kubernetes client used by a Provider.
/// </summary>
public class KubeClientSettingsArgs : global::Pulumi.ResourceArgs
{
/// <summary>
/// Maximum time in seconds to wait before cancelling a HTTP request to the Kubernetes server. Default value is 32.
/// </summary>
[Input("timeout")]
public Input<int>? Timeout { get; set; }
public KubeClientSettingsArgs()
{
Timeout = Utilities.GetEnvInt32("PULUMI_K8S_CLIENT_TIMEOUT");
}
public static new KubeClientSettingsArgs Empty => new KubeClientSettingsArgs();
}
}