Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the ApplicationTypeMetadata class.
 /// </summary>
 /// <param name="applicationTypeProvisionTimestamp">The timestamp when the application type was provisioned.</param>
 /// <param name="armMetadata">Common ArmMetadata assocaited with Service Fabric Entities.</param>
 public ApplicationTypeMetadata(
     string applicationTypeProvisionTimestamp = default(string),
     ArmMetadata armMetadata = default(ArmMetadata))
 {
     this.ApplicationTypeProvisionTimestamp = applicationTypeProvisionTimestamp;
     this.ArmMetadata = armMetadata;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the ServiceMetadata class.
 /// </summary>
 /// <param name="armMetadata">Common ArmMetadata assocaited with Service Fabric Entities.</param>
 public ServiceMetadata(
     ArmMetadata armMetadata = default(ArmMetadata))
 {
     this.ArmMetadata = armMetadata;
 }
Beispiel #3
0
 /// <summary>
 /// Initializes a new instance of the ApplicationMetadata class.
 /// </summary>
 /// <param name="armMetadata">Common ArmMetadata assocaited with Service Fabric Entities.</param>
 public ApplicationMetadata(
     ArmMetadata armMetadata = default(ArmMetadata))
 {
     this.ArmMetadata = armMetadata;
 }