This repository was archived by the owner on May 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 563
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into restapi_auto_network/resource-manager
- Loading branch information
Showing
708 changed files
with
25,885 additions
and
18,574 deletions.
There are no files selected for viewing
51 changes: 51 additions & 0 deletions
51
lib/services/apimanagement/lib/models/currentUserIdentity.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,51 @@ | ||
/* | ||
* 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'; | ||
|
||
/** | ||
* Class representing a CurrentUserIdentity. | ||
*/ | ||
class CurrentUserIdentity { | ||
/** | ||
* Create a CurrentUserIdentity. | ||
* @member {string} [id] API Management service user id. | ||
*/ | ||
constructor() { | ||
} | ||
|
||
/** | ||
* Defines the metadata of CurrentUserIdentity | ||
* | ||
* @returns {object} metadata of CurrentUserIdentity | ||
* | ||
*/ | ||
mapper() { | ||
return { | ||
required: false, | ||
serializedName: 'CurrentUserIdentity', | ||
type: { | ||
name: 'Composite', | ||
className: 'CurrentUserIdentity', | ||
modelProperties: { | ||
id: { | ||
required: false, | ||
serializedName: 'id', | ||
type: { | ||
name: 'String' | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
} | ||
} | ||
|
||
module.exports = CurrentUserIdentity; |
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
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
70 changes: 70 additions & 0 deletions
70
lib/services/apimanagement/lib/models/issueContractBaseProperties.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,70 @@ | ||
/* | ||
* 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'; | ||
|
||
/** | ||
* Issue contract Base Properties. | ||
* | ||
*/ | ||
class IssueContractBaseProperties { | ||
/** | ||
* Create a IssueContractBaseProperties. | ||
* @member {date} [createdDate] Date and time when the issue was created. | ||
* @member {string} [state] Status of the issue. Possible values include: | ||
* 'proposed', 'open', 'removed', 'resolved', 'closed' | ||
* @member {string} [apiId] A resource identifier for the API the issue was | ||
* created for. | ||
*/ | ||
constructor() { | ||
} | ||
|
||
/** | ||
* Defines the metadata of IssueContractBaseProperties | ||
* | ||
* @returns {object} metadata of IssueContractBaseProperties | ||
* | ||
*/ | ||
mapper() { | ||
return { | ||
required: false, | ||
serializedName: 'IssueContractBaseProperties', | ||
type: { | ||
name: 'Composite', | ||
className: 'IssueContractBaseProperties', | ||
modelProperties: { | ||
createdDate: { | ||
required: false, | ||
serializedName: 'createdDate', | ||
type: { | ||
name: 'DateTime' | ||
} | ||
}, | ||
state: { | ||
required: false, | ||
serializedName: 'state', | ||
type: { | ||
name: 'String' | ||
} | ||
}, | ||
apiId: { | ||
required: false, | ||
serializedName: 'apiId', | ||
type: { | ||
name: 'String' | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
} | ||
} | ||
|
||
module.exports = IssueContractBaseProperties; |
Oops, something went wrong.