Пример #1
0
 /// <summary>
 /// Create a ServiceConfig resource with the given unique name, arguments, and options.
 /// </summary>
 ///
 /// <param name="name">The unique name of the resource</param>
 /// <param name="args">The arguments used to populate this resource's properties</param>
 /// <param name="options">A bag of options that control this resource's behavior</param>
 public ServiceConfig(string name, ServiceConfigArgs args, CustomResourceOptions?options = null)
     : base("docker:index/config:Config", name, args ?? ResourceArgs.Empty, MakeResourceOptions(options, ""))
 {
 }
Пример #2
0
 /// <summary>
 /// Create a ServiceConfig resource with the given unique name, arguments, and options.
 /// </summary>
 ///
 /// <param name="name">The unique name of the resource</param>
 /// <param name="args">The arguments used to populate this resource's properties</param>
 /// <param name="options">A bag of options that control this resource's behavior</param>
 public ServiceConfig(string name, ServiceConfigArgs args, CustomResourceOptions?options = null)
     : base("docker:index/serviceConfig:ServiceConfig", name, args ?? new ServiceConfigArgs(), MakeResourceOptions(options, ""))
 {
 }