Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions eng/mgmt/mgmtmetadata/datafactory_resource-manager.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ AutoRest installed successfully.
Commencing code generation
Generating CSharp code
Executing AutoRest command
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/datafactory/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --tag=package-2018-06 --csharp-sdks-folder=D:\Projects\sdknew\azure-sdk-for-net\sdk
2019-11-12 12:03:10 UTC
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/datafactory/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --tag=package-2018-06 --csharp-sdks-folder=D:\Projects\azure-sdk-for-net\sdk
2019-11-26 10:14:48 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
Commit: 84f0b93b5875248897f38351db6171658e0ae7f0
Commit: 51c73f3413f32560f3ce4d2a9fd7d82492e98552
AutoRest information
Requested version: latest
Bootstrapper version: autorest@2.0.4407
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public MySqlLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).</param>
public MySqlLinkedService(SecretBase connectionString, IDictionary<string, object> additionalProperties = default(IDictionary<string, object>), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), IDictionary<string, ParameterSpecification> parameters = default(IDictionary<string, ParameterSpecification>), IList<object> annotations = default(IList<object>), AzureKeyVaultSecretReference password = default(AzureKeyVaultSecretReference), object encryptedCredential = default(object))
public MySqlLinkedService(object connectionString, IDictionary<string, object> additionalProperties = default(IDictionary<string, object>), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), IDictionary<string, ParameterSpecification> parameters = default(IDictionary<string, ParameterSpecification>), IList<object> annotations = default(IList<object>), AzureKeyVaultSecretReference password = default(AzureKeyVaultSecretReference), object encryptedCredential = default(object))
: base(additionalProperties, connectVia, description, parameters, annotations)
{
ConnectionString = connectionString;
Expand All @@ -67,7 +67,7 @@ public MySqlLinkedService()
/// Gets or sets the connection string.
/// </summary>
[JsonProperty(PropertyName = "typeProperties.connectionString")]
public SecretBase ConnectionString { get; set; }
public object ConnectionString { get; set; }

/// <summary>
/// Gets or sets the Azure key vault secret reference of password in
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public PostgreSqlLinkedService()
/// authentication. Credentials are encrypted using the integration
/// runtime credential manager. Type: string (or Expression with
/// resultType string).</param>
public PostgreSqlLinkedService(SecretBase connectionString, IDictionary<string, object> additionalProperties = default(IDictionary<string, object>), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), IDictionary<string, ParameterSpecification> parameters = default(IDictionary<string, ParameterSpecification>), IList<object> annotations = default(IList<object>), AzureKeyVaultSecretReference password = default(AzureKeyVaultSecretReference), object encryptedCredential = default(object))
public PostgreSqlLinkedService(object connectionString, IDictionary<string, object> additionalProperties = default(IDictionary<string, object>), IntegrationRuntimeReference connectVia = default(IntegrationRuntimeReference), string description = default(string), IDictionary<string, ParameterSpecification> parameters = default(IDictionary<string, ParameterSpecification>), IList<object> annotations = default(IList<object>), AzureKeyVaultSecretReference password = default(AzureKeyVaultSecretReference), object encryptedCredential = default(object))
: base(additionalProperties, connectVia, description, parameters, annotations)
{
ConnectionString = connectionString;
Expand All @@ -67,7 +67,7 @@ public PostgreSqlLinkedService()
/// Gets or sets the connection string.
/// </summary>
[JsonProperty(PropertyName = "typeProperties.connectionString")]
public SecretBase ConnectionString { get; set; }
public object ConnectionString { get; set; }

/// <summary>
/// Gets or sets the Azure key vault secret reference of password in
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2302,8 +2302,8 @@ public class LinkedServiceJsonSamples : JsonSampleCollection<LinkedServiceJsonSa
type: ""MySql"",
typeProperties: {
connectionString: {
type : ""SecureString"",
value : ""some connection string""
value : ""fakeConnString"",
type : ""SecureString""
}
}
}
Expand All @@ -2317,8 +2317,8 @@ public class LinkedServiceJsonSamples : JsonSampleCollection<LinkedServiceJsonSa
type: ""MySql"",
typeProperties: {
connectionString: {
type : ""SecureString"",
value : ""some connection string""
type : ""fakeConnString"",
value : ""SecureString""
},
password: {
type: ""AzureKeyVaultSecret"",
Expand All @@ -2340,8 +2340,8 @@ public class LinkedServiceJsonSamples : JsonSampleCollection<LinkedServiceJsonSa
type: ""PostgreSql"",
typeProperties: {
connectionString: {
type : ""SecureString"",
value : ""some connection string""
type : ""fakeConnString"",
value : ""SecureString""
}
}
}
Expand All @@ -2355,8 +2355,8 @@ public class LinkedServiceJsonSamples : JsonSampleCollection<LinkedServiceJsonSa
type: ""PostgreSql"",
typeProperties: {
connectionString: {
type : ""SecureString"",
value : ""some connection string""
type : ""fakeConnString"",
value : ""SecureString""
},
password: {
type: ""AzureKeyVaultSecret"",
Expand Down