Skip to content

Commit c4f65a2

Browse files
CI Update
Build.Reason:Manual by azure-sdk-internal-msdocs-apidrop-connection Build.Url:https://apidrop.visualstudio.com/Content%20CI/_build/results?buildId=526948&view=results
1 parent 6177526 commit c4f65a2

File tree

246 files changed

+9696
-662
lines changed

Some content is hidden

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

246 files changed

+9696
-662
lines changed

docs-ref-autogen/azure-core/azure.core.messaging.CloudEvent.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ constructor:
4040
- <xref:object>
4141
- name: time
4242
description: Optional. The time (in UTC) the event was generated.
43-
defaultValue: <object object at 0x0000025BE5EE77A0>
43+
defaultValue: <object object at 0x000002478B1B37A0>
4444
types:
4545
- <xref:datetime.datetime>
4646
- name: dataschema
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
### YamlMime:PythonClass
2+
uid: azure.mgmt.workloadssapvirtualinstance.WorkloadsSapVirtualInstanceMgmtClient
3+
name: WorkloadsSapVirtualInstanceMgmtClient
4+
fullName: azure.mgmt.workloadssapvirtualinstance.WorkloadsSapVirtualInstanceMgmtClient
5+
module: azure.mgmt.workloadssapvirtualinstance
6+
summary: Workloads client provides access to various workload operations.
7+
constructor:
8+
syntax: 'WorkloadsSapVirtualInstanceMgmtClient(credential: TokenCredential, subscription_id:
9+
str, base_url: str = ''https://management.azure.com'', **kwargs: Any)'
10+
parameters:
11+
- name: credential
12+
description: Credential used to authenticate requests to the service. Required.
13+
isRequired: true
14+
types:
15+
- <xref:azure.core.credentials.TokenCredential>
16+
- name: subscription_id
17+
description: The ID of the target subscription. The value must be an UUID. Required.
18+
isRequired: true
19+
types:
20+
- <xref:str>
21+
- name: base_url
22+
description: Service host. Default value is "`https://management.azure.com`".
23+
defaultValue: https://management.azure.com
24+
types:
25+
- <xref:str>
26+
keywordOnlyParameters:
27+
- name: api_version
28+
description: 'The API version to use for this operation. Default value is "2024-09-01".
29+
30+
Note that overriding this default value may result in unsupported behavior.'
31+
types:
32+
- <xref:str>
33+
- name: polling_interval
34+
description: 'Default waiting time between two polls for LRO operations if no
35+
36+
Retry-After header is present.'
37+
types:
38+
- <xref:int>
39+
variables:
40+
- description: Operations operations
41+
name: operations
42+
types:
43+
- <xref:azure.mgmt.workloadssapvirtualinstance.operations.Operations>
44+
- description: SAPVirtualInstancesOperations operations
45+
name: sap_virtual_instances
46+
types:
47+
- <xref:azure.mgmt.workloadssapvirtualinstance.operations.SAPVirtualInstancesOperations>
48+
- description: SAPCentralServerInstancesOperations operations
49+
name: sap_central_server_instances
50+
types:
51+
- <xref:azure.mgmt.workloadssapvirtualinstance.operations.SAPCentralServerInstancesOperations>
52+
- description: SAPDatabaseInstancesOperations operations
53+
name: sap_database_instances
54+
types:
55+
- <xref:azure.mgmt.workloadssapvirtualinstance.operations.SAPDatabaseInstancesOperations>
56+
- description: SAPApplicationServerInstancesOperations operations
57+
name: sap_application_server_instances
58+
types:
59+
- <xref:azure.mgmt.workloadssapvirtualinstance.operations.SAPApplicationServerInstancesOperations>
60+
methods:
61+
- uid: azure.mgmt.workloadssapvirtualinstance.WorkloadsSapVirtualInstanceMgmtClient.close
62+
name: close
63+
signature: close() -> None
64+
- uid: azure.mgmt.workloadssapvirtualinstance.WorkloadsSapVirtualInstanceMgmtClient.send_request
65+
name: send_request
66+
summary: 'Runs the network request through the client''s chained policies.
67+
68+
69+
```
70+
71+
72+
>>> from azure.core.rest import HttpRequest
73+
74+
>>> request = HttpRequest("GET", "https://www.example.org/")
75+
76+
<HttpRequest [GET], url: ''https://www.example.org/''>
77+
78+
>>> response = client.send_request(request)
79+
80+
<HttpResponse: 200 OK>
81+
82+
```
83+
84+
85+
For more information on this code flow, see [https://aka.ms/azsdk/dpcodegen/python/send_request](https://aka.ms/azsdk/dpcodegen/python/send_request)'
86+
signature: 'send_request(request: HttpRequest, *, stream: bool = False, **kwargs:
87+
Any) -> HttpResponse'
88+
parameters:
89+
- name: request
90+
description: The network request you want to make. Required.
91+
isRequired: true
92+
types:
93+
- <xref:azure.core.rest.HttpRequest>
94+
keywordOnlyParameters:
95+
- name: stream
96+
description: Whether the response payload will be streamed. Defaults to False.
97+
defaultValue: 'False'
98+
types:
99+
- <xref:bool>
100+
return:
101+
description: The response of your network call. Does not do error handling on
102+
your response.
103+
types:
104+
- <xref:azure.core.rest.HttpResponse>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
### YamlMime:PythonClass
2+
uid: azure.mgmt.workloadssapvirtualinstance.aio.WorkloadsSapVirtualInstanceMgmtClient
3+
name: WorkloadsSapVirtualInstanceMgmtClient
4+
fullName: azure.mgmt.workloadssapvirtualinstance.aio.WorkloadsSapVirtualInstanceMgmtClient
5+
module: azure.mgmt.workloadssapvirtualinstance.aio
6+
summary: Workloads client provides access to various workload operations.
7+
constructor:
8+
syntax: 'WorkloadsSapVirtualInstanceMgmtClient(credential: AsyncTokenCredential,
9+
subscription_id: str, base_url: str = ''https://management.azure.com'', **kwargs:
10+
Any)'
11+
parameters:
12+
- name: credential
13+
description: Credential used to authenticate requests to the service. Required.
14+
isRequired: true
15+
types:
16+
- <xref:azure.core.credentials_async.AsyncTokenCredential>
17+
- name: subscription_id
18+
description: The ID of the target subscription. The value must be an UUID. Required.
19+
isRequired: true
20+
types:
21+
- <xref:str>
22+
- name: base_url
23+
description: Service host. Default value is "`https://management.azure.com`".
24+
defaultValue: https://management.azure.com
25+
types:
26+
- <xref:str>
27+
keywordOnlyParameters:
28+
- name: api_version
29+
description: 'The API version to use for this operation. Default value is "2024-09-01".
30+
31+
Note that overriding this default value may result in unsupported behavior.'
32+
types:
33+
- <xref:str>
34+
- name: polling_interval
35+
description: 'Default waiting time between two polls for LRO operations if no
36+
37+
Retry-After header is present.'
38+
types:
39+
- <xref:int>
40+
variables:
41+
- description: Operations operations
42+
name: operations
43+
types:
44+
- <xref:azure.mgmt.workloadssapvirtualinstance.aio.operations.Operations>
45+
- description: SAPVirtualInstancesOperations operations
46+
name: sap_virtual_instances
47+
types:
48+
- <xref:azure.mgmt.workloadssapvirtualinstance.aio.operations.SAPVirtualInstancesOperations>
49+
- description: SAPCentralServerInstancesOperations operations
50+
name: sap_central_server_instances
51+
types:
52+
- <xref:azure.mgmt.workloadssapvirtualinstance.aio.operations.SAPCentralServerInstancesOperations>
53+
- description: SAPDatabaseInstancesOperations operations
54+
name: sap_database_instances
55+
types:
56+
- <xref:azure.mgmt.workloadssapvirtualinstance.aio.operations.SAPDatabaseInstancesOperations>
57+
- description: SAPApplicationServerInstancesOperations operations
58+
name: sap_application_server_instances
59+
types:
60+
- <xref:azure.mgmt.workloadssapvirtualinstance.aio.operations.SAPApplicationServerInstancesOperations>
61+
methods:
62+
- uid: azure.mgmt.workloadssapvirtualinstance.aio.WorkloadsSapVirtualInstanceMgmtClient.close
63+
name: close
64+
signature: async close() -> None
65+
- uid: azure.mgmt.workloadssapvirtualinstance.aio.WorkloadsSapVirtualInstanceMgmtClient.send_request
66+
name: send_request
67+
summary: 'Runs the network request through the client''s chained policies.
68+
69+
70+
```
71+
72+
73+
>>> from azure.core.rest import HttpRequest
74+
75+
>>> request = HttpRequest("GET", "https://www.example.org/")
76+
77+
<HttpRequest [GET], url: ''https://www.example.org/''>
78+
79+
>>> response = await client.send_request(request)
80+
81+
<AsyncHttpResponse: 200 OK>
82+
83+
```
84+
85+
86+
For more information on this code flow, see [https://aka.ms/azsdk/dpcodegen/python/send_request](https://aka.ms/azsdk/dpcodegen/python/send_request)'
87+
signature: 'send_request(request: HttpRequest, *, stream: bool = False, **kwargs:
88+
Any) -> Awaitable[AsyncHttpResponse]'
89+
parameters:
90+
- name: request
91+
description: The network request you want to make. Required.
92+
isRequired: true
93+
types:
94+
- <xref:azure.core.rest.HttpRequest>
95+
keywordOnlyParameters:
96+
- name: stream
97+
description: Whether the response payload will be streamed. Defaults to False.
98+
defaultValue: 'False'
99+
types:
100+
- <xref:bool>
101+
return:
102+
description: The response of your network call. Does not do error handling on
103+
your response.
104+
types:
105+
- <xref:azure.core.rest.AsyncHttpResponse>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
### YamlMime:PythonClass
2+
uid: azure.mgmt.workloadssapvirtualinstance.aio.operations.Operations
3+
name: Operations
4+
fullName: azure.mgmt.workloadssapvirtualinstance.aio.operations.Operations
5+
module: azure.mgmt.workloadssapvirtualinstance.aio.operations
6+
summary: "> [!WARNING]\n> DO NOT instantiate this class directly.\n>\n> \n>\n> Instead,\
7+
\ you should access the following operations through\n>\n> <xref:azure.mgmt.workloadssapvirtualinstance.aio.WorkloadsSapVirtualInstanceMgmtClient>'s\n\
8+
>\n> <xref:operations> attribute.\n>"
9+
constructor:
10+
syntax: Operations(*args, **kwargs)
11+
methods:
12+
- uid: azure.mgmt.workloadssapvirtualinstance.aio.operations.Operations.list
13+
name: list
14+
summary: List the operations for the provider.
15+
signature: 'list(**kwargs: Any) -> AsyncIterable[Operation]'
16+
return:
17+
description: An iterator like instance of Operation
18+
types:
19+
- <xref:azure.core.async_paging.AsyncItemPaged>[<xref:azure.mgmt.workloadssapvirtualinstance.models.Operation>]
20+
exceptions:
21+
- type: azure.core.exceptions.HttpResponseError

0 commit comments

Comments
 (0)