Example #1
0
 /// <summary>
 /// Initializes a new instance of the ServicesDescription class.
 /// </summary>
 /// <param name="kind">The kind of the service. Possible values
 /// include: 'fhir', 'fhir-Stu3', 'fhir-R4'</param>
 /// <param name="location">The resource location.</param>
 /// <param name="id">The resource identifier.</param>
 /// <param name="name">The resource name.</param>
 /// <param name="type">The resource type.</param>
 /// <param name="tags">The resource tags.</param>
 /// <param name="etag">An etag associated with the resource, used for
 /// optimistic concurrency when editing it.</param>
 /// <param name="identity">Setting indicating whether the service has a
 /// managed identity associated with it.</param>
 /// <param name="properties">The common properties of a
 /// service.</param>
 /// <param name="systemData">Metadata pertaining to creation and last
 /// modification of the resource.</param>
 public ServicesDescription(Kind kind, string location, string id = default(string), string name = default(string), string type = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), string etag = default(string), ServicesResourceIdentity identity = default(ServicesResourceIdentity), ServicesProperties properties = default(ServicesProperties), SystemData systemData = default(SystemData))
     : base(kind, location, id, name, type, tags, etag, identity)
 {
     Properties = properties;
     SystemData = systemData;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the ServicesDescription class.
 /// </summary>
 /// <param name="location">The resource location.</param>
 /// <param name="id">The resource identifier.</param>
 /// <param name="name">The resource name.</param>
 /// <param name="type">The resource type.</param>
 /// <param name="tags">The resource tags.</param>
 /// <param name="etag">An etag associated with the resource, used for
 /// optimistic concurrency when editing it.</param>
 /// <param name="properties">The common properties of a
 /// service.</param>
 public ServicesDescription(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), string etag = default(string), ServicesProperties properties = default(ServicesProperties))
     : base(location, id, name, type, tags, etag)
 {
     Properties = properties;
     CustomInit();
 }