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