github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/output-funcs-edgeorder/dotnet/Inputs/CustomerSubscriptionRegisteredFeaturesArgs.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.Myedgeorder.Inputs 11 { 12 13 /// <summary> 14 /// Represents subscription registered features 15 /// </summary> 16 public sealed class CustomerSubscriptionRegisteredFeaturesArgs : global::Pulumi.ResourceArgs 17 { 18 /// <summary> 19 /// Name of subscription registered feature 20 /// </summary> 21 [Input("name")] 22 public Input<string>? Name { get; set; } 23 24 /// <summary> 25 /// State of subscription registered feature 26 /// </summary> 27 [Input("state")] 28 public Input<string>? State { get; set; } 29 30 public CustomerSubscriptionRegisteredFeaturesArgs() 31 { 32 } 33 public static new CustomerSubscriptionRegisteredFeaturesArgs Empty => new CustomerSubscriptionRegisteredFeaturesArgs(); 34 } 35 }