mirror of https://github.com/pulumi/pulumi.git
30 lines
822 B
C#
30 lines
822 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.Mypkg.Inputs
|
|
{
|
|
|
|
/// <summary>
|
|
/// Bastion Shareable Link.
|
|
/// </summary>
|
|
public sealed class BastionShareableLinkArgs : global::Pulumi.ResourceArgs
|
|
{
|
|
/// <summary>
|
|
/// Reference of the virtual machine resource.
|
|
/// </summary>
|
|
[Input("vm", required: true)]
|
|
public Input<string> Vm { get; set; } = null!;
|
|
|
|
public BastionShareableLinkArgs()
|
|
{
|
|
}
|
|
public static new BastionShareableLinkArgs Empty => new BastionShareableLinkArgs();
|
|
}
|
|
}
|