github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/output-funcs-edgeorder/dotnet/Inputs/CustomerSubscriptionDetailsArgs.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 /// Holds Customer subscription details. Clients can display available products to unregistered customers by explicitly passing subscription details 15 /// </summary> 16 public sealed class CustomerSubscriptionDetailsArgs : global::Pulumi.ResourceArgs 17 { 18 /// <summary> 19 /// Location placement Id of a subscription 20 /// </summary> 21 [Input("locationPlacementId")] 22 public Input<string>? LocationPlacementId { get; set; } 23 24 /// <summary> 25 /// Quota ID of a subscription 26 /// </summary> 27 [Input("quotaId", required: true)] 28 public Input<string> QuotaId { get; set; } = null!; 29 30 [Input("registeredFeatures")] 31 private InputList<Inputs.CustomerSubscriptionRegisteredFeaturesArgs>? _registeredFeatures; 32 33 /// <summary> 34 /// List of registered feature flags for subscription 35 /// </summary> 36 public InputList<Inputs.CustomerSubscriptionRegisteredFeaturesArgs> RegisteredFeatures 37 { 38 get => _registeredFeatures ?? (_registeredFeatures = new InputList<Inputs.CustomerSubscriptionRegisteredFeaturesArgs>()); 39 set => _registeredFeatures = value; 40 } 41 42 public CustomerSubscriptionDetailsArgs() 43 { 44 } 45 public static new CustomerSubscriptionDetailsArgs Empty => new CustomerSubscriptionDetailsArgs(); 46 } 47 }