Class ConfigVariable
ConfigVariable represents a configuration variable present in a Connection. or AuthConfig.
Implements
Inherited Members
Namespace: Google.Apis.Connectors.v1.Data
Assembly: Google.Apis.Connectors.v1.dll
Syntax
public class ConfigVariable : IDirectResponseSchema
Properties
BoolValue
Value is a bool.
Declaration
[JsonProperty("boolValue")]
public virtual bool? BoolValue { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EncryptionKeyValue
Value is a Encryption Key.
Declaration
[JsonProperty("encryptionKeyValue")]
public virtual EncryptionKey EncryptionKeyValue { get; set; }
Property Value
Type | Description |
---|---|
EncryptionKey |
IntValue
Value is an integer
Declaration
[JsonProperty("intValue")]
public virtual long? IntValue { get; set; }
Property Value
Type | Description |
---|---|
long? |
Key
Key of the config variable.
Declaration
[JsonProperty("key")]
public virtual string Key { get; set; }
Property Value
Type | Description |
---|---|
string |
SecretValue
Value is a secret.
Declaration
[JsonProperty("secretValue")]
public virtual Secret SecretValue { get; set; }
Property Value
Type | Description |
---|---|
Secret |
StringValue
Value is a string.
Declaration
[JsonProperty("stringValue")]
public virtual string StringValue { get; set; }
Property Value
Type | Description |
---|---|
string |