/// <summary>
 /// Initializes a new instance of the ServicesResource 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>
 public ServicesResource(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))
 {
     Id       = id;
     Name     = name;
     Type     = type;
     Kind     = kind;
     Location = location;
     Tags     = tags;
     Etag     = etag;
     Identity = identity;
     CustomInit();
 }
 /// <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>
 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))
     : base(kind, location, id, name, type, tags, etag, identity)
 {
     Properties = properties;
     CustomInit();
 }