Skip to content

Commit 9d31521

Browse files
authored
Merge pull request #93 from microsoftgraph/v1.0/pipelinebuild/106293
Generated v1.0 models and request builders using Kiota
2 parents 0ab4780 + 5b851a7 commit 9d31521

File tree

230 files changed

+9004
-318
lines changed

Some content is hidden

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

230 files changed

+9004
-318
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
## [0.16.0] - 2023-02-21
15+
16+
### Changed
17+
18+
- Weekly generation.
19+
1420
## [0.15.0] - 2023-02-09
1521

1622
### Changed

lib/chats/item/messages/item/replies/replies_request_builder.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def get(request_configuration=nil)
6969
return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::ChatMessageCollectionResponse.create_from_discriminator_value(pn) }, error_mapping)
7070
end
7171
##
72-
## Send a new reply to a chatMessage in a specified channel.
72+
## Create a new reply to a chatMessage in a specified channel.
7373
## @param body The request body
7474
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
7575
## @return a Fiber of chat_message
@@ -103,7 +103,7 @@ def to_get_request_information(request_configuration=nil)
103103
return request_info
104104
end
105105
##
106-
## Send a new reply to a chatMessage in a specified channel.
106+
## Create a new reply to a chatMessage in a specified channel.
107107
## @param body The request body
108108
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
109109
## @return a request_information

lib/chats/item/messages/messages_request_builder.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def get(request_configuration=nil)
6565
return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::ChatMessageCollectionResponse.create_from_discriminator_value(pn) }, error_mapping)
6666
end
6767
##
68-
## Send a new chatMessage in the specified channel or a chat.
68+
## Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
6969
## @param body The request body
7070
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
7171
## @return a Fiber of chat_message
@@ -99,7 +99,7 @@ def to_get_request_information(request_configuration=nil)
9999
return request_info
100100
end
101101
##
102-
## Send a new chatMessage in the specified channel or a chat.
102+
## Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
103103
## @param body The request body
104104
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
105105
## @return a request_information

lib/communications/calls/item/participants/microsoft_graph_invite/microsoft_graph_invite_request_builder.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def initialize(path_parameters, request_adapter)
4242
@path_parameters = path_parameters if path_parameters.is_a? Hash
4343
end
4444
##
45-
## Invite participants to the active call. For more information about how to handle operations, see commsOperation.
45+
## Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
4646
## @param body The request body
4747
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
4848
## @return a Fiber of invite_participants_operation
@@ -58,7 +58,7 @@ def post(body, request_configuration=nil)
5858
return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::InviteParticipantsOperation.create_from_discriminator_value(pn) }, error_mapping)
5959
end
6060
##
61-
## Invite participants to the active call. For more information about how to handle operations, see commsOperation.
61+
## Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
6262
## @param body The request body
6363
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
6464
## @return a request_information

lib/drives/item/items/item/workbook/names/item/microsoft_graph_range/microsoft_graph_range_request_builder.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def initialize(path_parameters, request_adapter)
4848
@path_parameters = path_parameters if path_parameters.is_a? Hash
4949
end
5050
##
51-
## Retrieve the properties and relationships of range object.
51+
## Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range.
5252
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5353
## @return a Fiber of workbook_range
5454
##
@@ -62,7 +62,7 @@ def get(request_configuration=nil)
6262
return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::WorkbookRange.create_from_discriminator_value(pn) }, error_mapping)
6363
end
6464
##
65-
## Retrieve the properties and relationships of range object.
65+
## Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range.
6666
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
6767
## @return a request_information
6868
##

lib/drives/item/items/item/workbook/worksheets/item/names/item/microsoft_graph_range/microsoft_graph_range_request_builder.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def initialize(path_parameters, request_adapter)
5252
@path_parameters = path_parameters if path_parameters.is_a? Hash
5353
end
5454
##
55-
## Retrieve the properties and relationships of range object.
55+
## Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range.
5656
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5757
## @return a Fiber of workbook_range
5858
##
@@ -66,7 +66,7 @@ def get(request_configuration=nil)
6666
return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::WorkbookRange.create_from_discriminator_value(pn) }, error_mapping)
6767
end
6868
##
69-
## Retrieve the properties and relationships of range object.
69+
## Returns the range object that is associated with the name. Throws an exception if the named item's type is not a range.
7070
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
7171
## @return a request_information
7272
##

lib/groups/item/calendar/calendar_view/item/attachments/attachments_request_builder.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def get(request_configuration=nil)
7171
return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::AttachmentCollectionResponse.create_from_discriminator_value(pn) }, error_mapping)
7272
end
7373
##
74-
## Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource.
74+
## Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well.
7575
## @param body The request body
7676
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
7777
## @return a Fiber of attachment
@@ -105,7 +105,7 @@ def to_get_request_information(request_configuration=nil)
105105
return request_info
106106
end
107107
##
108-
## Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource.
108+
## Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well.
109109
## @param body The request body
110110
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
111111
## @return a request_information

lib/groups/item/calendar/calendar_view/item/instances/item/attachments/attachments_request_builder.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def get(request_configuration=nil)
7575
return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::AttachmentCollectionResponse.create_from_discriminator_value(pn) }, error_mapping)
7676
end
7777
##
78-
## Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource.
78+
## Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well.
7979
## @param body The request body
8080
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8181
## @return a Fiber of attachment
@@ -109,7 +109,7 @@ def to_get_request_information(request_configuration=nil)
109109
return request_info
110110
end
111111
##
112-
## Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource.
112+
## Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well.
113113
## @param body The request body
114114
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
115115
## @return a request_information

lib/groups/item/calendar/events/item/attachments/attachments_request_builder.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def get(request_configuration=nil)
7171
return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::AttachmentCollectionResponse.create_from_discriminator_value(pn) }, error_mapping)
7272
end
7373
##
74-
## Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource.
74+
## Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well.
7575
## @param body The request body
7676
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
7777
## @return a Fiber of attachment
@@ -105,7 +105,7 @@ def to_get_request_information(request_configuration=nil)
105105
return request_info
106106
end
107107
##
108-
## Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource.
108+
## Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well.
109109
## @param body The request body
110110
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
111111
## @return a request_information

lib/groups/item/calendar/events/item/instances/item/attachments/attachments_request_builder.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def get(request_configuration=nil)
7575
return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::AttachmentCollectionResponse.create_from_discriminator_value(pn) }, error_mapping)
7676
end
7777
##
78-
## Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource.
78+
## Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well.
7979
## @param body The request body
8080
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8181
## @return a Fiber of attachment
@@ -109,7 +109,7 @@ def to_get_request_information(request_configuration=nil)
109109
return request_info
110110
end
111111
##
112-
## Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource.
112+
## Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well.
113113
## @param body The request body
114114
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
115115
## @return a request_information

lib/groups/item/calendar_view/item/attachments/attachments_request_builder.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def get(request_configuration=nil)
6969
return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::AttachmentCollectionResponse.create_from_discriminator_value(pn) }, error_mapping)
7070
end
7171
##
72-
## Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource.
72+
## Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well.
7373
## @param body The request body
7474
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
7575
## @return a Fiber of attachment
@@ -103,7 +103,7 @@ def to_get_request_information(request_configuration=nil)
103103
return request_info
104104
end
105105
##
106-
## Use this API to create a new Attachment. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource.
106+
## Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well.
107107
## @param body The request body
108108
## @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
109109
## @return a request_information

0 commit comments

Comments
 (0)