mirror of https://github.com/pulumi/pulumi.git
27 lines
775 B
C#
27 lines
775 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.Example.Inputs
|
|
{
|
|
|
|
public sealed class ServerPropertiesForReplicaArgs : global::Pulumi.ResourceArgs
|
|
{
|
|
[Input("createMode", required: true)]
|
|
public Input<string> CreateMode { get; set; } = null!;
|
|
|
|
[Input("version")]
|
|
public Input<string>? Version { get; set; }
|
|
|
|
public ServerPropertiesForReplicaArgs()
|
|
{
|
|
}
|
|
public static new ServerPropertiesForReplicaArgs Empty => new ServerPropertiesForReplicaArgs();
|
|
}
|
|
}
|