mirror of https://github.com/pulumi/pulumi.git
48 lines
1.7 KiB
C#
48 lines
1.7 KiB
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.Myedgeorder.Inputs
|
|
{
|
|
|
|
/// <summary>
|
|
/// Holds Customer subscription details. Clients can display available products to unregistered customers by explicitly passing subscription details
|
|
/// </summary>
|
|
public sealed class CustomerSubscriptionDetailsArgs : global::Pulumi.ResourceArgs
|
|
{
|
|
/// <summary>
|
|
/// Location placement Id of a subscription
|
|
/// </summary>
|
|
[Input("locationPlacementId")]
|
|
public Input<string>? LocationPlacementId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Quota ID of a subscription
|
|
/// </summary>
|
|
[Input("quotaId", required: true)]
|
|
public Input<string> QuotaId { get; set; } = null!;
|
|
|
|
[Input("registeredFeatures")]
|
|
private InputList<Inputs.CustomerSubscriptionRegisteredFeaturesArgs>? _registeredFeatures;
|
|
|
|
/// <summary>
|
|
/// List of registered feature flags for subscription
|
|
/// </summary>
|
|
public InputList<Inputs.CustomerSubscriptionRegisteredFeaturesArgs> RegisteredFeatures
|
|
{
|
|
get => _registeredFeatures ?? (_registeredFeatures = new InputList<Inputs.CustomerSubscriptionRegisteredFeaturesArgs>());
|
|
set => _registeredFeatures = value;
|
|
}
|
|
|
|
public CustomerSubscriptionDetailsArgs()
|
|
{
|
|
}
|
|
public static new CustomerSubscriptionDetailsArgs Empty => new CustomerSubscriptionDetailsArgs();
|
|
}
|
|
}
|