This repository has been archived by the owner on May 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 566
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AutoPR datafactory/resource-manager] Adding refresh and get Integrat…
…ionRuntimeObjectMetadata API (#4291) * Generated from aded924bcbec0926d1f273fdc99b3a8d2d51246b Adding refresh and get IntegrationRuntimeObjectMetadata API * Generated from 38fb817c3d29a206d1371a3d4cea5002cc960535 Change ssis to upper case * Generated from 43c2dab88ba9dd4abfe793fddfe0c1156518c4a9 Fix model validation issue
- Loading branch information
1 parent
8184668
commit 27f451e
Showing
11 changed files
with
1,381 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
lib/services/datafactoryManagement/lib/models/getSsisObjectMetadataRequest.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
* Changes may cause incorrect behavior and will be lost if the code is | ||
* regenerated. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
/** | ||
* The request payload of get SSIS object metadata. | ||
* | ||
*/ | ||
class GetSsisObjectMetadataRequest { | ||
/** | ||
* Create a GetSsisObjectMetadataRequest. | ||
* @property {string} [metadataPath] Metadata path. | ||
*/ | ||
constructor() { | ||
} | ||
|
||
/** | ||
* Defines the metadata of GetSsisObjectMetadataRequest | ||
* | ||
* @returns {object} metadata of GetSsisObjectMetadataRequest | ||
* | ||
*/ | ||
mapper() { | ||
return { | ||
required: false, | ||
serializedName: 'GetSsisObjectMetadataRequest', | ||
type: { | ||
name: 'Composite', | ||
className: 'GetSsisObjectMetadataRequest', | ||
modelProperties: { | ||
metadataPath: { | ||
required: false, | ||
serializedName: 'metadataPath', | ||
type: { | ||
name: 'String' | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
} | ||
} | ||
|
||
module.exports = GetSsisObjectMetadataRequest; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
82 changes: 82 additions & 0 deletions
82
lib/services/datafactoryManagement/lib/models/ssisObjectMetadata.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
* Changes may cause incorrect behavior and will be lost if the code is | ||
* regenerated. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
/** | ||
* SSIS object metadata. | ||
* | ||
*/ | ||
class SsisObjectMetadata { | ||
/** | ||
* Create a SsisObjectMetadata. | ||
* @property {number} [id] Metadata id. | ||
* @property {string} [name] Metadata name. | ||
* @property {string} [description] Metadata description. | ||
* @property {string} type Polymorphic Discriminator | ||
*/ | ||
constructor() { | ||
} | ||
|
||
/** | ||
* Defines the metadata of SsisObjectMetadata | ||
* | ||
* @returns {object} metadata of SsisObjectMetadata | ||
* | ||
*/ | ||
mapper() { | ||
return { | ||
required: false, | ||
serializedName: 'SsisObjectMetadata', | ||
type: { | ||
name: 'Composite', | ||
polymorphicDiscriminator: { | ||
serializedName: 'type', | ||
clientName: 'type' | ||
}, | ||
uberParent: 'SsisObjectMetadata', | ||
className: 'SsisObjectMetadata', | ||
modelProperties: { | ||
id: { | ||
required: false, | ||
serializedName: 'id', | ||
type: { | ||
name: 'Number' | ||
} | ||
}, | ||
name: { | ||
required: false, | ||
serializedName: 'name', | ||
type: { | ||
name: 'String' | ||
} | ||
}, | ||
description: { | ||
required: false, | ||
serializedName: 'description', | ||
type: { | ||
name: 'String' | ||
} | ||
}, | ||
type: { | ||
required: true, | ||
serializedName: 'type', | ||
isPolymorphicDiscriminator: true, | ||
type: { | ||
name: 'String' | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
} | ||
} | ||
|
||
module.exports = SsisObjectMetadata; |
74 changes: 74 additions & 0 deletions
74
lib/services/datafactoryManagement/lib/models/ssisObjectMetadataListResponse.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
* Changes may cause incorrect behavior and will be lost if the code is | ||
* regenerated. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
/** | ||
* A list of SSIS object metadata. | ||
* | ||
*/ | ||
class SsisObjectMetadataListResponse { | ||
/** | ||
* Create a SsisObjectMetadataListResponse. | ||
* @property {array} [value] List of SSIS object metadata. | ||
* @property {string} [nextLink] The link to the next page of results, if any | ||
* remaining results exist. | ||
*/ | ||
constructor() { | ||
} | ||
|
||
/** | ||
* Defines the metadata of SsisObjectMetadataListResponse | ||
* | ||
* @returns {object} metadata of SsisObjectMetadataListResponse | ||
* | ||
*/ | ||
mapper() { | ||
return { | ||
required: false, | ||
serializedName: 'SsisObjectMetadataListResponse', | ||
type: { | ||
name: 'Composite', | ||
className: 'SsisObjectMetadataListResponse', | ||
modelProperties: { | ||
value: { | ||
required: false, | ||
serializedName: 'value', | ||
type: { | ||
name: 'Sequence', | ||
element: { | ||
required: false, | ||
serializedName: 'SsisObjectMetadataElementType', | ||
type: { | ||
name: 'Composite', | ||
polymorphicDiscriminator: { | ||
serializedName: 'type', | ||
clientName: 'type' | ||
}, | ||
uberParent: 'SsisObjectMetadata', | ||
className: 'SsisObjectMetadata' | ||
} | ||
} | ||
} | ||
}, | ||
nextLink: { | ||
required: false, | ||
serializedName: 'nextLink', | ||
type: { | ||
name: 'String' | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
} | ||
} | ||
|
||
module.exports = SsisObjectMetadataListResponse; |
Oops, something went wrong.