/// <summary> /// Initializes a new instance of the SBNamespaceUpdateParameters /// class. /// </summary> /// <param name="id">Resource Id</param> /// <param name="name">Resource name</param> /// <param name="type">Resource type</param> /// <param name="location">Resource location</param> /// <param name="tags">Resource tags</param> /// <param name="sku">Porperties of Sku</param> /// <param name="provisioningState">Provisioning state of the /// namespace.</param> /// <param name="createdAt">The time the namespace was created.</param> /// <param name="updatedAt">The time the namespace was updated.</param> /// <param name="serviceBusEndpoint">Endpoint you can use to perform /// Service Bus operations.</param> /// <param name="metricId">Identifier for Azure Insights /// metrics</param> public SBNamespaceUpdateParameters(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), SBSku sku = default(SBSku), string provisioningState = default(string), System.DateTime?createdAt = default(System.DateTime?), System.DateTime?updatedAt = default(System.DateTime?), string serviceBusEndpoint = default(string), string metricId = default(string)) : base(id, name, type, location, tags) { Sku = sku; ProvisioningState = provisioningState; CreatedAt = createdAt; UpdatedAt = updatedAt; ServiceBusEndpoint = serviceBusEndpoint; MetricId = metricId; CustomInit(); }
/// <summary> /// Initializes a new instance of the SBNamespaceUpdateParameters /// class. /// </summary> /// <param name="id">Resource Id</param> /// <param name="name">Resource name</param> /// <param name="type">Resource type</param> /// <param name="location">Resource location</param> /// <param name="tags">Resource tags</param> /// <param name="sku">Properties of SKU</param> /// <param name="provisioningState">Provisioning state of the /// namespace.</param> /// <param name="status">Status of the namespace.</param> /// <param name="createdAt">The time the namespace was created</param> /// <param name="updatedAt">The time the namespace was updated.</param> /// <param name="serviceBusEndpoint">Endpoint you can use to perform /// Service Bus operations.</param> /// <param name="metricId">Identifier for Azure Insights /// metrics</param> /// <param name="zoneRedundant">Enabling this property creates a /// Premium Service Bus Namespace in regions supported availability /// zones.</param> /// <param name="encryption">Properties of BYOK Encryption /// description</param> /// <param name="privateEndpointConnections">List of private endpoint /// connections.</param> /// <param name="disableLocalAuth">This property disables SAS /// authentication for the Service Bus namespace.</param> /// <param name="identity">Properties of BYOK Identity /// description</param> public SBNamespaceUpdateParameters(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), SBSku sku = default(SBSku), string provisioningState = default(string), string status = default(string), System.DateTime?createdAt = default(System.DateTime?), System.DateTime?updatedAt = default(System.DateTime?), string serviceBusEndpoint = default(string), string metricId = default(string), bool?zoneRedundant = default(bool?), Encryption encryption = default(Encryption), IList <PrivateEndpointConnection> privateEndpointConnections = default(IList <PrivateEndpointConnection>), bool?disableLocalAuth = default(bool?), Identity identity = default(Identity)) : base(id, name, type, location, tags) { Sku = sku; ProvisioningState = provisioningState; Status = status; CreatedAt = createdAt; UpdatedAt = updatedAt; ServiceBusEndpoint = serviceBusEndpoint; MetricId = metricId; ZoneRedundant = zoneRedundant; Encryption = encryption; PrivateEndpointConnections = privateEndpointConnections; DisableLocalAuth = disableLocalAuth; Identity = identity; CustomInit(); }