Skip to content

Commit 99ef1df

Browse files
Updating based on a39f3be69 (#1167)
Co-authored-by: hc-github-team-tf-azure <>
1 parent 6cc2767 commit 99ef1df

File tree

706 files changed

+4486
-4498
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

706 files changed

+4486
-4498
lines changed

resource-manager/datafactory/2018-06-01/dataflowdebugsession/model_amazonmwslinkedservicetypeproperties.go

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -9,30 +9,30 @@ import (
99
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
1010

1111
type AmazonMWSLinkedServiceTypeProperties struct {
12-
AccessKeyId string `json:"accessKeyId"`
13-
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
14-
Endpoint string `json:"endpoint"`
15-
MarketplaceID string `json:"marketplaceID"`
16-
MwsAuthToken SecretBase `json:"mwsAuthToken"`
17-
SecretKey SecretBase `json:"secretKey"`
18-
SellerID string `json:"sellerID"`
19-
UseEncryptedEndpoints *bool `json:"useEncryptedEndpoints,omitempty"`
20-
UseHostVerification *bool `json:"useHostVerification,omitempty"`
21-
UsePeerVerification *bool `json:"usePeerVerification,omitempty"`
12+
AccessKeyId interface{} `json:"accessKeyId"`
13+
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
14+
Endpoint interface{} `json:"endpoint"`
15+
MarketplaceID interface{} `json:"marketplaceID"`
16+
MwsAuthToken SecretBase `json:"mwsAuthToken"`
17+
SecretKey SecretBase `json:"secretKey"`
18+
SellerID interface{} `json:"sellerID"`
19+
UseEncryptedEndpoints *bool `json:"useEncryptedEndpoints,omitempty"`
20+
UseHostVerification *bool `json:"useHostVerification,omitempty"`
21+
UsePeerVerification *bool `json:"usePeerVerification,omitempty"`
2222
}
2323

2424
var _ json.Unmarshaler = &AmazonMWSLinkedServiceTypeProperties{}
2525

2626
func (s *AmazonMWSLinkedServiceTypeProperties) UnmarshalJSON(bytes []byte) error {
2727
var decoded struct {
28-
AccessKeyId string `json:"accessKeyId"`
29-
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
30-
Endpoint string `json:"endpoint"`
31-
MarketplaceID string `json:"marketplaceID"`
32-
SellerID string `json:"sellerID"`
33-
UseEncryptedEndpoints *bool `json:"useEncryptedEndpoints,omitempty"`
34-
UseHostVerification *bool `json:"useHostVerification,omitempty"`
35-
UsePeerVerification *bool `json:"usePeerVerification,omitempty"`
28+
AccessKeyId interface{} `json:"accessKeyId"`
29+
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
30+
Endpoint interface{} `json:"endpoint"`
31+
MarketplaceID interface{} `json:"marketplaceID"`
32+
SellerID interface{} `json:"sellerID"`
33+
UseEncryptedEndpoints *bool `json:"useEncryptedEndpoints,omitempty"`
34+
UseHostVerification *bool `json:"useHostVerification,omitempty"`
35+
UsePeerVerification *bool `json:"usePeerVerification,omitempty"`
3636
}
3737
if err := json.Unmarshal(bytes, &decoded); err != nil {
3838
return fmt.Errorf("unmarshaling: %+v", err)

resource-manager/datafactory/2018-06-01/dataflowdebugsession/model_amazonrdsforlinkedservicetypeproperties.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ import (
99
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
1010

1111
type AmazonRdsForLinkedServiceTypeProperties struct {
12-
ConnectionString string `json:"connectionString"`
13-
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
14-
Password SecretBase `json:"password"`
12+
ConnectionString interface{} `json:"connectionString"`
13+
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
14+
Password SecretBase `json:"password"`
1515
}
1616

1717
var _ json.Unmarshaler = &AmazonRdsForLinkedServiceTypeProperties{}
1818

1919
func (s *AmazonRdsForLinkedServiceTypeProperties) UnmarshalJSON(bytes []byte) error {
2020
var decoded struct {
21-
ConnectionString string `json:"connectionString"`
22-
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
21+
ConnectionString interface{} `json:"connectionString"`
22+
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
2323
}
2424
if err := json.Unmarshal(bytes, &decoded); err != nil {
2525
return fmt.Errorf("unmarshaling: %+v", err)

resource-manager/datafactory/2018-06-01/dataflowdebugsession/model_amazonrdsfororacletabledatasettypeproperties.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ package dataflowdebugsession
44
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
55

66
type AmazonRdsForOracleTableDatasetTypeProperties struct {
7-
Schema *string `json:"schema,omitempty"`
8-
Table *string `json:"table,omitempty"`
7+
Schema *interface{} `json:"schema,omitempty"`
8+
Table *interface{} `json:"table,omitempty"`
99
}

resource-manager/datafactory/2018-06-01/dataflowdebugsession/model_amazonrdsforsqlserverlinkedservicetypeproperties.go

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ import (
1010

1111
type AmazonRdsForSqlServerLinkedServiceTypeProperties struct {
1212
AlwaysEncryptedSettings *SqlAlwaysEncryptedProperties `json:"alwaysEncryptedSettings,omitempty"`
13-
ApplicationIntent *string `json:"applicationIntent,omitempty"`
13+
ApplicationIntent *interface{} `json:"applicationIntent,omitempty"`
1414
AuthenticationType *AmazonRdsForSqlAuthenticationType `json:"authenticationType,omitempty"`
1515
CommandTimeout *int64 `json:"commandTimeout,omitempty"`
1616
ConnectRetryCount *int64 `json:"connectRetryCount,omitempty"`
1717
ConnectRetryInterval *int64 `json:"connectRetryInterval,omitempty"`
1818
ConnectTimeout *int64 `json:"connectTimeout,omitempty"`
19-
ConnectionString *string `json:"connectionString,omitempty"`
20-
Database *string `json:"database,omitempty"`
21-
Encrypt *string `json:"encrypt,omitempty"`
19+
ConnectionString *interface{} `json:"connectionString,omitempty"`
20+
Database *interface{} `json:"database,omitempty"`
21+
Encrypt *interface{} `json:"encrypt,omitempty"`
2222
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
23-
FailoverPartner *string `json:"failoverPartner,omitempty"`
24-
HostNameInCertificate *string `json:"hostNameInCertificate,omitempty"`
23+
FailoverPartner *interface{} `json:"failoverPartner,omitempty"`
24+
HostNameInCertificate *interface{} `json:"hostNameInCertificate,omitempty"`
2525
IntegratedSecurity *bool `json:"integratedSecurity,omitempty"`
2626
LoadBalanceTimeout *int64 `json:"loadBalanceTimeout,omitempty"`
2727
MaxPoolSize *int64 `json:"maxPoolSize,omitempty"`
@@ -31,28 +31,28 @@ type AmazonRdsForSqlServerLinkedServiceTypeProperties struct {
3131
PacketSize *int64 `json:"packetSize,omitempty"`
3232
Password SecretBase `json:"password"`
3333
Pooling *bool `json:"pooling,omitempty"`
34-
Server *string `json:"server,omitempty"`
34+
Server *interface{} `json:"server,omitempty"`
3535
TrustServerCertificate *bool `json:"trustServerCertificate,omitempty"`
36-
UserName *string `json:"userName,omitempty"`
36+
UserName *interface{} `json:"userName,omitempty"`
3737
}
3838

3939
var _ json.Unmarshaler = &AmazonRdsForSqlServerLinkedServiceTypeProperties{}
4040

4141
func (s *AmazonRdsForSqlServerLinkedServiceTypeProperties) UnmarshalJSON(bytes []byte) error {
4242
var decoded struct {
4343
AlwaysEncryptedSettings *SqlAlwaysEncryptedProperties `json:"alwaysEncryptedSettings,omitempty"`
44-
ApplicationIntent *string `json:"applicationIntent,omitempty"`
44+
ApplicationIntent *interface{} `json:"applicationIntent,omitempty"`
4545
AuthenticationType *AmazonRdsForSqlAuthenticationType `json:"authenticationType,omitempty"`
4646
CommandTimeout *int64 `json:"commandTimeout,omitempty"`
4747
ConnectRetryCount *int64 `json:"connectRetryCount,omitempty"`
4848
ConnectRetryInterval *int64 `json:"connectRetryInterval,omitempty"`
4949
ConnectTimeout *int64 `json:"connectTimeout,omitempty"`
50-
ConnectionString *string `json:"connectionString,omitempty"`
51-
Database *string `json:"database,omitempty"`
52-
Encrypt *string `json:"encrypt,omitempty"`
50+
ConnectionString *interface{} `json:"connectionString,omitempty"`
51+
Database *interface{} `json:"database,omitempty"`
52+
Encrypt *interface{} `json:"encrypt,omitempty"`
5353
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
54-
FailoverPartner *string `json:"failoverPartner,omitempty"`
55-
HostNameInCertificate *string `json:"hostNameInCertificate,omitempty"`
54+
FailoverPartner *interface{} `json:"failoverPartner,omitempty"`
55+
HostNameInCertificate *interface{} `json:"hostNameInCertificate,omitempty"`
5656
IntegratedSecurity *bool `json:"integratedSecurity,omitempty"`
5757
LoadBalanceTimeout *int64 `json:"loadBalanceTimeout,omitempty"`
5858
MaxPoolSize *int64 `json:"maxPoolSize,omitempty"`
@@ -61,9 +61,9 @@ func (s *AmazonRdsForSqlServerLinkedServiceTypeProperties) UnmarshalJSON(bytes [
6161
MultipleActiveResultSets *bool `json:"multipleActiveResultSets,omitempty"`
6262
PacketSize *int64 `json:"packetSize,omitempty"`
6363
Pooling *bool `json:"pooling,omitempty"`
64-
Server *string `json:"server,omitempty"`
64+
Server *interface{} `json:"server,omitempty"`
6565
TrustServerCertificate *bool `json:"trustServerCertificate,omitempty"`
66-
UserName *string `json:"userName,omitempty"`
66+
UserName *interface{} `json:"userName,omitempty"`
6767
}
6868
if err := json.Unmarshal(bytes, &decoded); err != nil {
6969
return fmt.Errorf("unmarshaling: %+v", err)

resource-manager/datafactory/2018-06-01/dataflowdebugsession/model_amazonrdsforsqlservertabledatasettypeproperties.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ package dataflowdebugsession
44
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
55

66
type AmazonRdsForSqlServerTableDatasetTypeProperties struct {
7-
Schema *string `json:"schema,omitempty"`
8-
Table *string `json:"table,omitempty"`
7+
Schema *interface{} `json:"schema,omitempty"`
8+
Table *interface{} `json:"table,omitempty"`
99
}

resource-manager/datafactory/2018-06-01/dataflowdebugsession/model_amazonredshiftlinkedservicetypeproperties.go

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,23 @@ import (
99
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
1010

1111
type AmazonRedshiftLinkedServiceTypeProperties struct {
12-
Database string `json:"database"`
13-
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
14-
Password SecretBase `json:"password"`
15-
Port *int64 `json:"port,omitempty"`
16-
Server string `json:"server"`
17-
Username *string `json:"username,omitempty"`
12+
Database interface{} `json:"database"`
13+
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
14+
Password SecretBase `json:"password"`
15+
Port *int64 `json:"port,omitempty"`
16+
Server interface{} `json:"server"`
17+
Username *interface{} `json:"username,omitempty"`
1818
}
1919

2020
var _ json.Unmarshaler = &AmazonRedshiftLinkedServiceTypeProperties{}
2121

2222
func (s *AmazonRedshiftLinkedServiceTypeProperties) UnmarshalJSON(bytes []byte) error {
2323
var decoded struct {
24-
Database string `json:"database"`
25-
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
26-
Port *int64 `json:"port,omitempty"`
27-
Server string `json:"server"`
28-
Username *string `json:"username,omitempty"`
24+
Database interface{} `json:"database"`
25+
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
26+
Port *int64 `json:"port,omitempty"`
27+
Server interface{} `json:"server"`
28+
Username *interface{} `json:"username,omitempty"`
2929
}
3030
if err := json.Unmarshal(bytes, &decoded); err != nil {
3131
return fmt.Errorf("unmarshaling: %+v", err)

resource-manager/datafactory/2018-06-01/dataflowdebugsession/model_amazonredshifttabledatasettypeproperties.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package dataflowdebugsession
44
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
55

66
type AmazonRedshiftTableDatasetTypeProperties struct {
7-
Schema *string `json:"schema,omitempty"`
8-
Table *string `json:"table,omitempty"`
9-
TableName *string `json:"tableName,omitempty"`
7+
Schema *interface{} `json:"schema,omitempty"`
8+
Table *interface{} `json:"table,omitempty"`
9+
TableName *interface{} `json:"tableName,omitempty"`
1010
}

resource-manager/datafactory/2018-06-01/dataflowdebugsession/model_amazons3compatiblelinkedservicetypeproperties.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@ import (
99
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
1010

1111
type AmazonS3CompatibleLinkedServiceTypeProperties struct {
12-
AccessKeyId *string `json:"accessKeyId,omitempty"`
13-
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
14-
ForcePathStyle *bool `json:"forcePathStyle,omitempty"`
15-
SecretAccessKey SecretBase `json:"secretAccessKey"`
16-
ServiceURL *string `json:"serviceUrl,omitempty"`
12+
AccessKeyId *interface{} `json:"accessKeyId,omitempty"`
13+
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
14+
ForcePathStyle *bool `json:"forcePathStyle,omitempty"`
15+
SecretAccessKey SecretBase `json:"secretAccessKey"`
16+
ServiceURL *interface{} `json:"serviceUrl,omitempty"`
1717
}
1818

1919
var _ json.Unmarshaler = &AmazonS3CompatibleLinkedServiceTypeProperties{}
2020

2121
func (s *AmazonS3CompatibleLinkedServiceTypeProperties) UnmarshalJSON(bytes []byte) error {
2222
var decoded struct {
23-
AccessKeyId *string `json:"accessKeyId,omitempty"`
24-
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
25-
ForcePathStyle *bool `json:"forcePathStyle,omitempty"`
26-
ServiceURL *string `json:"serviceUrl,omitempty"`
23+
AccessKeyId *interface{} `json:"accessKeyId,omitempty"`
24+
EncryptedCredential *string `json:"encryptedCredential,omitempty"`
25+
ForcePathStyle *bool `json:"forcePathStyle,omitempty"`
26+
ServiceURL *interface{} `json:"serviceUrl,omitempty"`
2727
}
2828
if err := json.Unmarshal(bytes, &decoded); err != nil {
2929
return fmt.Errorf("unmarshaling: %+v", err)

resource-manager/datafactory/2018-06-01/dataflowdebugsession/model_amazons3compatiblelocation.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ import (
1111
var _ DatasetLocation = AmazonS3CompatibleLocation{}
1212

1313
type AmazonS3CompatibleLocation struct {
14-
BucketName *string `json:"bucketName,omitempty"`
15-
Version *string `json:"version,omitempty"`
14+
BucketName *interface{} `json:"bucketName,omitempty"`
15+
Version *interface{} `json:"version,omitempty"`
1616

1717
// Fields inherited from DatasetLocation
1818

19-
FileName *string `json:"fileName,omitempty"`
20-
FolderPath *string `json:"folderPath,omitempty"`
21-
Type string `json:"type"`
19+
FileName *interface{} `json:"fileName,omitempty"`
20+
FolderPath *interface{} `json:"folderPath,omitempty"`
21+
Type string `json:"type"`
2222
}
2323

2424
func (s AmazonS3CompatibleLocation) DatasetLocation() BaseDatasetLocationImpl {

resource-manager/datafactory/2018-06-01/dataflowdebugsession/model_amazons3datasettypeproperties.go

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,27 @@ import (
99
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
1010

1111
type AmazonS3DatasetTypeProperties struct {
12-
BucketName string `json:"bucketName"`
12+
BucketName interface{} `json:"bucketName"`
1313
Compression *DatasetCompression `json:"compression,omitempty"`
1414
Format DatasetStorageFormat `json:"format"`
15-
Key *string `json:"key,omitempty"`
16-
ModifiedDatetimeEnd *string `json:"modifiedDatetimeEnd,omitempty"`
17-
ModifiedDatetimeStart *string `json:"modifiedDatetimeStart,omitempty"`
18-
Prefix *string `json:"prefix,omitempty"`
19-
Version *string `json:"version,omitempty"`
15+
Key *interface{} `json:"key,omitempty"`
16+
ModifiedDatetimeEnd *interface{} `json:"modifiedDatetimeEnd,omitempty"`
17+
ModifiedDatetimeStart *interface{} `json:"modifiedDatetimeStart,omitempty"`
18+
Prefix *interface{} `json:"prefix,omitempty"`
19+
Version *interface{} `json:"version,omitempty"`
2020
}
2121

2222
var _ json.Unmarshaler = &AmazonS3DatasetTypeProperties{}
2323

2424
func (s *AmazonS3DatasetTypeProperties) UnmarshalJSON(bytes []byte) error {
2525
var decoded struct {
26-
BucketName string `json:"bucketName"`
26+
BucketName interface{} `json:"bucketName"`
2727
Compression *DatasetCompression `json:"compression,omitempty"`
28-
Key *string `json:"key,omitempty"`
29-
ModifiedDatetimeEnd *string `json:"modifiedDatetimeEnd,omitempty"`
30-
ModifiedDatetimeStart *string `json:"modifiedDatetimeStart,omitempty"`
31-
Prefix *string `json:"prefix,omitempty"`
32-
Version *string `json:"version,omitempty"`
28+
Key *interface{} `json:"key,omitempty"`
29+
ModifiedDatetimeEnd *interface{} `json:"modifiedDatetimeEnd,omitempty"`
30+
ModifiedDatetimeStart *interface{} `json:"modifiedDatetimeStart,omitempty"`
31+
Prefix *interface{} `json:"prefix,omitempty"`
32+
Version *interface{} `json:"version,omitempty"`
3333
}
3434
if err := json.Unmarshal(bytes, &decoded); err != nil {
3535
return fmt.Errorf("unmarshaling: %+v", err)

0 commit comments

Comments
 (0)