示例#1
0
 /// <summary>
 /// Initializes a new instance of the GalleryApplicationVersionUpdate
 /// class.
 /// </summary>
 /// <param name="id">Resource Id</param>
 /// <param name="name">Resource name</param>
 /// <param name="type">Resource type</param>
 /// <param name="tags">Resource tags</param>
 /// <param name="provisioningState">The current state of the gallery
 /// Application Version.</param>
 public GalleryApplicationVersionUpdate(GalleryApplicationVersionPublishingProfile publishingProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), string provisioningState = default(string), ReplicationStatus replicationStatus = default(ReplicationStatus))
     : base(id, name, type, tags)
 {
     PublishingProfile = publishingProfile;
     ProvisioningState = provisioningState;
     ReplicationStatus = replicationStatus;
     CustomInit();
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the GalleryImageVersion class.
 /// </summary>
 /// <param name="location">Resource location</param>
 /// <param name="id">Resource Id</param>
 /// <param name="name">Resource name</param>
 /// <param name="type">Resource type</param>
 /// <param name="tags">Resource tags</param>
 /// <param name="provisioningState">The current state of the gallery
 /// Image Version.</param>
 public GalleryImageVersion(string location, GalleryImageVersionStorageProfile storageProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), GalleryImageVersionPublishingProfile publishingProfile = default(GalleryImageVersionPublishingProfile), string provisioningState = default(string), ReplicationStatus replicationStatus = default(ReplicationStatus))
     : base(location, id, name, type, tags)
 {
     PublishingProfile = publishingProfile;
     ProvisioningState = provisioningState;
     StorageProfile    = storageProfile;
     ReplicationStatus = replicationStatus;
     CustomInit();
 }