Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,18 @@ package dataflowdebugsession
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.

type AzurePostgreSqlLinkedServiceTypeProperties struct {
ConnectionString *string `json:"connectionString,omitempty"`
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
Password *AzureKeyVaultSecretReference `json:"password,omitempty"`
CommandTimeout *int64 `json:"commandTimeout,omitempty"`
ConnectionString *string `json:"connectionString,omitempty"`
Database *string `json:"database,omitempty"`
Encoding *string `json:"encoding,omitempty"`
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
Password *AzureKeyVaultSecretReference `json:"password,omitempty"`
Port *int64 `json:"port,omitempty"`
ReadBufferSize *int64 `json:"readBufferSize,omitempty"`
Server *string `json:"server,omitempty"`
SslMode *int64 `json:"sslMode,omitempty"`
Timeout *int64 `json:"timeout,omitempty"`
Timezone *string `json:"timezone,omitempty"`
TrustServerCertificate *bool `json:"trustServerCertificate,omitempty"`
Username *string `json:"username,omitempty"`
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,21 @@ package dataflowdebugsession
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.

type MySqlLinkedServiceTypeProperties struct {
AllowZeroDateTime *bool `json:"allowZeroDateTime,omitempty"`
ConnectionString *string `json:"connectionString,omitempty"`
ConnectionTimeout *int64 `json:"connectionTimeout,omitempty"`
ConvertZeroDateTime *bool `json:"convertZeroDateTime,omitempty"`
Database *string `json:"database,omitempty"`
DriverVersion *string `json:"driverVersion,omitempty"`
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
GuidFormat *string `json:"guidFormat,omitempty"`
Password *AzureKeyVaultSecretReference `json:"password,omitempty"`
Port *int64 `json:"port,omitempty"`
Server *string `json:"server,omitempty"`
SslCert *string `json:"sslCert,omitempty"`
SslKey *string `json:"sslKey,omitempty"`
SslMode *int64 `json:"sslMode,omitempty"`
TreatTinyAsBoolean *bool `json:"treatTinyAsBoolean,omitempty"`
UseSystemTrustStore *int64 `json:"useSystemTrustStore,omitempty"`
Username *string `json:"username,omitempty"`
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,18 @@ package linkedservices
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.

type AzurePostgreSqlLinkedServiceTypeProperties struct {
ConnectionString *string `json:"connectionString,omitempty"`
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
Password *AzureKeyVaultSecretReference `json:"password,omitempty"`
CommandTimeout *int64 `json:"commandTimeout,omitempty"`
ConnectionString *string `json:"connectionString,omitempty"`
Database *string `json:"database,omitempty"`
Encoding *string `json:"encoding,omitempty"`
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
Password *AzureKeyVaultSecretReference `json:"password,omitempty"`
Port *int64 `json:"port,omitempty"`
ReadBufferSize *int64 `json:"readBufferSize,omitempty"`
Server *string `json:"server,omitempty"`
SslMode *int64 `json:"sslMode,omitempty"`
Timeout *int64 `json:"timeout,omitempty"`
Timezone *string `json:"timezone,omitempty"`
TrustServerCertificate *bool `json:"trustServerCertificate,omitempty"`
Username *string `json:"username,omitempty"`
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,21 @@ package linkedservices
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.

type MySqlLinkedServiceTypeProperties struct {
AllowZeroDateTime *bool `json:"allowZeroDateTime,omitempty"`
ConnectionString *string `json:"connectionString,omitempty"`
ConnectionTimeout *int64 `json:"connectionTimeout,omitempty"`
ConvertZeroDateTime *bool `json:"convertZeroDateTime,omitempty"`
Database *string `json:"database,omitempty"`
DriverVersion *string `json:"driverVersion,omitempty"`
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
GuidFormat *string `json:"guidFormat,omitempty"`
Password *AzureKeyVaultSecretReference `json:"password,omitempty"`
Port *int64 `json:"port,omitempty"`
Server *string `json:"server,omitempty"`
SslCert *string `json:"sslCert,omitempty"`
SslKey *string `json:"sslKey,omitempty"`
SslMode *int64 `json:"sslMode,omitempty"`
TreatTinyAsBoolean *bool `json:"treatTinyAsBoolean,omitempty"`
UseSystemTrustStore *int64 `json:"useSystemTrustStore,omitempty"`
Username *string `json:"username,omitempty"`
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ package registrymanagement

type AcrDetails struct {
SystemCreatedAcrAccount *SystemCreatedAcrAccount `json:"systemCreatedAcrAccount,omitempty"`
UserCreatedAcrAccount *UserCreatedAcrAccount `json:"userCreatedAcrAccount,omitempty"`
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ package registrymanagement

type StorageAccountDetails struct {
SystemCreatedStorageAccount *SystemCreatedStorageAccount `json:"systemCreatedStorageAccount,omitempty"`
UserCreatedStorageAccount *UserCreatedStorageAccount `json:"userCreatedStorageAccount,omitempty"`
}

This file was deleted.

This file was deleted.

Loading