This repository has been archived by the owner on Jan 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AutoPR apimanagement/resource-manager] /identity endpoint added (#1907)
* Generated from 8363d68686accd9a2c5c1727ebab556ca7529cb3 /identity endpoint added * Generated from 8363d68686accd9a2c5c1727ebab556ca7529cb3 /identity endpoint added
- Loading branch information
1 parent
63de30f
commit d5dbbb9
Showing
7 changed files
with
534 additions
and
116 deletions.
There are no files selected for viewing
181 changes: 92 additions & 89 deletions
181
management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management.rb
Large diffs are not rendered by default.
Oops, something went wrong.
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
45 changes: 45 additions & 0 deletions
45
...gement/lib/2018-01-01/generated/azure_mgmt_api_management/models/current_user_identity.rb
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,45 @@ | ||
# encoding: utf-8 | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
|
||
module Azure::ApiManagement::Mgmt::V2018_01_01_preview | ||
module Models | ||
# | ||
# Model object. | ||
# | ||
# | ||
class CurrentUserIdentity | ||
|
||
include MsRestAzure | ||
|
||
# @return [String] API Management service user id. | ||
attr_accessor :id | ||
|
||
|
||
# | ||
# Mapper for CurrentUserIdentity class as Ruby Hash. | ||
# This will be used for serialization/deserialization. | ||
# | ||
def self.mapper() | ||
{ | ||
required: false, | ||
serialized_name: 'CurrentUserIdentity', | ||
type: { | ||
name: 'Composite', | ||
class_name: 'CurrentUserIdentity', | ||
model_properties: { | ||
id: { | ||
required: false, | ||
serialized_name: 'id', | ||
type: { | ||
name: 'String' | ||
} | ||
} | ||
} | ||
} | ||
} | ||
end | ||
end | ||
end | ||
end |
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
66 changes: 66 additions & 0 deletions
66
...b/2018-01-01/generated/azure_mgmt_api_management/models/issue_contract_base_properties.rb
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,66 @@ | ||
# encoding: utf-8 | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
|
||
module Azure::ApiManagement::Mgmt::V2018_01_01_preview | ||
module Models | ||
# | ||
# Issue contract Base Properties. | ||
# | ||
class IssueContractBaseProperties | ||
|
||
include MsRestAzure | ||
|
||
# @return [DateTime] Date and time when the issue was created. | ||
attr_accessor :created_date | ||
|
||
# @return [State] Status of the issue. Possible values include: | ||
# 'proposed', 'open', 'removed', 'resolved', 'closed' | ||
attr_accessor :state | ||
|
||
# @return [String] A resource identifier for the API the issue was | ||
# created for. | ||
attr_accessor :api_id | ||
|
||
|
||
# | ||
# Mapper for IssueContractBaseProperties class as Ruby Hash. | ||
# This will be used for serialization/deserialization. | ||
# | ||
def self.mapper() | ||
{ | ||
required: false, | ||
serialized_name: 'IssueContractBaseProperties', | ||
type: { | ||
name: 'Composite', | ||
class_name: 'IssueContractBaseProperties', | ||
model_properties: { | ||
created_date: { | ||
required: false, | ||
serialized_name: 'createdDate', | ||
type: { | ||
name: 'DateTime' | ||
} | ||
}, | ||
state: { | ||
required: false, | ||
serialized_name: 'state', | ||
type: { | ||
name: 'String' | ||
} | ||
}, | ||
api_id: { | ||
required: false, | ||
serialized_name: 'apiId', | ||
type: { | ||
name: 'String' | ||
} | ||
} | ||
} | ||
} | ||
} | ||
end | ||
end | ||
end | ||
end |
Oops, something went wrong.