Пример #1
0
        private AzureMariaDBLinkedServiceResponse(
            ImmutableArray <object> annotations,

            Outputs.IntegrationRuntimeReferenceResponse?connectVia,

            object?connectionString,

            string?description,

            object?encryptedCredential,

            ImmutableDictionary <string, Outputs.ParameterSpecificationResponse>?parameters,

            Outputs.AzureKeyVaultSecretReferenceResponse?pwd,

            string type)
        {
            Annotations         = annotations;
            ConnectVia          = connectVia;
            ConnectionString    = connectionString;
            Description         = description;
            EncryptedCredential = encryptedCredential;
            Parameters          = parameters;
            Pwd  = pwd;
            Type = type;
        }
Пример #2
0
        private AzureStorageLinkedServiceResponse(
            Outputs.AzureKeyVaultSecretReferenceResponse?accountKey,

            ImmutableArray <object> annotations,

            Outputs.IntegrationRuntimeReferenceResponse?connectVia,

            object?connectionString,

            string?description,

            string?encryptedCredential,

            ImmutableDictionary <string, Outputs.ParameterSpecificationResponse>?parameters,

            Outputs.AzureKeyVaultSecretReferenceResponse?sasToken,

            object?sasUri,

            string type)
        {
            AccountKey          = accountKey;
            Annotations         = annotations;
            ConnectVia          = connectVia;
            ConnectionString    = connectionString;
            Description         = description;
            EncryptedCredential = encryptedCredential;
            Parameters          = parameters;
            SasToken            = sasToken;
            SasUri = sasUri;
            Type   = type;
        }
Пример #3
0
        private AzureFileStorageLinkedServiceResponse(
            Outputs.AzureKeyVaultSecretReferenceResponse?accountKey,

            ImmutableArray <object> annotations,

            Outputs.IntegrationRuntimeReferenceResponse?connectVia,

            object?connectionString,

            string?description,

            object?encryptedCredential,

            object?fileShare,

            object?host,

            ImmutableDictionary <string, Outputs.ParameterSpecificationResponse>?parameters,

            Union <Outputs.AzureKeyVaultSecretReferenceResponse, Outputs.SecureStringResponse>?password,

            Outputs.AzureKeyVaultSecretReferenceResponse?sasToken,

            object?sasUri,

            object?snapshot,

            string type,

            object?userId)
        {
            AccountKey          = accountKey;
            Annotations         = annotations;
            ConnectVia          = connectVia;
            ConnectionString    = connectionString;
            Description         = description;
            EncryptedCredential = encryptedCredential;
            FileShare           = fileShare;
            Host       = host;
            Parameters = parameters;
            Password   = password;
            SasToken   = sasToken;
            SasUri     = sasUri;
            Snapshot   = snapshot;
            Type       = type;
            UserId     = userId;
        }
Пример #4
0
        private AzureBlobStorageLinkedServiceResponse(
            Outputs.AzureKeyVaultSecretReferenceResponse?accountKey,

            ImmutableArray <object> annotations,

            object?azureCloudType,

            Outputs.IntegrationRuntimeReferenceResponse?connectVia,

            object?connectionString,

            string?description,

            string?encryptedCredential,

            ImmutableDictionary <string, Outputs.ParameterSpecificationResponse>?parameters,

            Outputs.AzureKeyVaultSecretReferenceResponse?sasToken,

            object?sasUri,

            string?serviceEndpoint,

            object?servicePrincipalId,

            Union <Outputs.AzureKeyVaultSecretReferenceResponse, Outputs.SecureStringResponse>?servicePrincipalKey,

            object?tenant,

            string type)
        {
            AccountKey          = accountKey;
            Annotations         = annotations;
            AzureCloudType      = azureCloudType;
            ConnectVia          = connectVia;
            ConnectionString    = connectionString;
            Description         = description;
            EncryptedCredential = encryptedCredential;
            Parameters          = parameters;
            SasToken            = sasToken;
            SasUri              = sasUri;
            ServiceEndpoint     = serviceEndpoint;
            ServicePrincipalId  = servicePrincipalId;
            ServicePrincipalKey = servicePrincipalKey;
            Tenant              = tenant;
            Type = type;
        }
Пример #5
0
        private AzureSqlDWLinkedServiceResponse(
            ImmutableArray <object> annotations,

            object?azureCloudType,

            Outputs.IntegrationRuntimeReferenceResponse?connectVia,

            object connectionString,

            string?description,

            object?encryptedCredential,

            ImmutableDictionary <string, Outputs.ParameterSpecificationResponse>?parameters,

            Outputs.AzureKeyVaultSecretReferenceResponse?password,

            object?servicePrincipalId,

            Union <Outputs.AzureKeyVaultSecretReferenceResponse, Outputs.SecureStringResponse>?servicePrincipalKey,

            object?tenant,

            string type)
        {
            Annotations         = annotations;
            AzureCloudType      = azureCloudType;
            ConnectVia          = connectVia;
            ConnectionString    = connectionString;
            Description         = description;
            EncryptedCredential = encryptedCredential;
            Parameters          = parameters;
            Password            = password;
            ServicePrincipalId  = servicePrincipalId;
            ServicePrincipalKey = servicePrincipalKey;
            Tenant = tenant;
            Type   = type;
        }