-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathOracleLinkedServiceArgs.cs
174 lines (146 loc) · 7.69 KB
/
OracleLinkedServiceArgs.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
// *** WARNING: this file was generated by pulumi. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Threading.Tasks;
using Pulumi.Serialization;
namespace Pulumi.AzureNative.DataFactory.Inputs
{
/// <summary>
/// Oracle database. This linked service has supported version property. The Version 1.0 is scheduled for deprecation while your pipeline will continue to run after EOL but without any bug fix or new features.
/// </summary>
public sealed class OracleLinkedServiceArgs : global::Pulumi.ResourceArgs
{
[Input("annotations")]
private InputList<object>? _annotations;
/// <summary>
/// List of tags that can be used for describing the linked service.
/// </summary>
public InputList<object> Annotations
{
get => _annotations ?? (_annotations = new InputList<object>());
set => _annotations = value;
}
/// <summary>
/// Authentication type for connecting to the Oracle database. Only used for Version 2.0.
/// </summary>
[Input("authenticationType")]
public InputUnion<string, Pulumi.AzureNative.DataFactory.OracleAuthenticationType>? AuthenticationType { get; set; }
/// <summary>
/// The integration runtime reference.
/// </summary>
[Input("connectVia")]
public Input<Inputs.IntegrationRuntimeReferenceArgs>? ConnectVia { get; set; }
/// <summary>
/// The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
/// </summary>
[Input("connectionString", required: true)]
public Input<object> ConnectionString { get; set; } = null!;
/// <summary>
/// Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
/// </summary>
[Input("cryptoChecksumClient")]
public Input<object>? CryptoChecksumClient { get; set; }
/// <summary>
/// Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
/// </summary>
[Input("cryptoChecksumTypesClient")]
public Input<object>? CryptoChecksumTypesClient { get; set; }
/// <summary>
/// Linked service description.
/// </summary>
[Input("description")]
public Input<string>? Description { get; set; }
/// <summary>
/// Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
/// </summary>
[Input("enableBulkLoad")]
public Input<object>? EnableBulkLoad { get; set; }
/// <summary>
/// The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
/// </summary>
[Input("encryptedCredential")]
public Input<string>? EncryptedCredential { get; set; }
/// <summary>
/// Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
/// </summary>
[Input("encryptionClient")]
public Input<object>? EncryptionClient { get; set; }
/// <summary>
/// Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
/// </summary>
[Input("encryptionTypesClient")]
public Input<object>? EncryptionTypesClient { get; set; }
/// <summary>
/// Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
/// </summary>
[Input("fetchSize")]
public Input<object>? FetchSize { get; set; }
/// <summary>
/// Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
/// </summary>
[Input("fetchTswtzAsTimestamp")]
public Input<object>? FetchTswtzAsTimestamp { get; set; }
/// <summary>
/// Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
/// </summary>
[Input("initialLobFetchSize")]
public Input<object>? InitialLobFetchSize { get; set; }
/// <summary>
/// Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
/// </summary>
[Input("initializationString")]
public Input<object>? InitializationString { get; set; }
[Input("parameters")]
private InputMap<Inputs.ParameterSpecificationArgs>? _parameters;
/// <summary>
/// Parameters for linked service.
/// </summary>
public InputMap<Inputs.ParameterSpecificationArgs> Parameters
{
get => _parameters ?? (_parameters = new InputMap<Inputs.ParameterSpecificationArgs>());
set => _parameters = value;
}
/// <summary>
/// The Azure key vault secret reference of password in connection string.
/// </summary>
[Input("password")]
public Input<Inputs.AzureKeyVaultSecretReferenceArgs>? Password { get; set; }
/// <summary>
/// The location of Oracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
/// </summary>
[Input("server")]
public Input<object>? Server { get; set; }
/// <summary>
/// Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
/// </summary>
[Input("statementCacheSize")]
public Input<object>? StatementCacheSize { get; set; }
/// <summary>
/// Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
/// </summary>
[Input("supportV1DataTypes")]
public Input<object>? SupportV1DataTypes { get; set; }
/// <summary>
/// Type of linked service.
/// Expected value is 'Oracle'.
/// </summary>
[Input("type", required: true)]
public Input<string> Type { get; set; } = null!;
/// <summary>
/// The Oracle database username. Type: string. Only used for Version 2.0.
/// </summary>
[Input("username")]
public Input<object>? Username { get; set; }
/// <summary>
/// Version of the linked service.
/// </summary>
[Input("version")]
public Input<string>? Version { get; set; }
public OracleLinkedServiceArgs()
{
}
public static new OracleLinkedServiceArgs Empty => new OracleLinkedServiceArgs();
}
}