github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/output-funcs/dotnet/Inputs/BastionShareableLinkArgs.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.Mypkg.Inputs
    11  {
    12  
    13      /// <summary>
    14      /// Bastion Shareable Link.
    15      /// </summary>
    16      public sealed class BastionShareableLinkArgs : global::Pulumi.ResourceArgs
    17      {
    18          /// <summary>
    19          /// Reference of the virtual machine resource.
    20          /// </summary>
    21          [Input("vm", required: true)]
    22          public Input<string> Vm { get; set; } = null!;
    23  
    24          public BastionShareableLinkArgs()
    25          {
    26          }
    27          public static new BastionShareableLinkArgs Empty => new BastionShareableLinkArgs();
    28      }
    29  }