// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Models.IndustryData;
var requestBody = new OutboundProvisioningFlowSet
{
OdataType = "#microsoft.graph.industryData.outboundProvisioningFlowSet",
DisplayName = "Outbound Provisioning Flow Test",
Filter = new BasicFilter
{
OdataType = "#microsoft.graph.industryData.basicFilter",
Attribute = FilterOptions.OrgExternalId,
In = new List<string>
{
"Quarter",
"Demo",
},
},
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.External.IndustryData.OutboundProvisioningFlowSets.PostAsync(requestBody);
重要
Microsoft Graph SDK では、既定で v1.0 バージョンの API が使用され、ベータ版で使用可能なすべての型、プロパティ、API がサポートされているわけではありません。 SDK を使用してベータ API にアクセスする方法の詳細については、「ベータ API で Microsoft Graph SDK を使用する」を参照してください。
Microsoft Graph SDK では、既定で v1.0 バージョンの API が使用され、ベータ版で使用可能なすべての型、プロパティ、API がサポートされているわけではありません。 SDK を使用してベータ API にアクセスする方法の詳細については、「ベータ API で Microsoft Graph SDK を使用する」を参照してください。
// Code snippets are only available for the latest major version. Current major version is $v0.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
graphmodelsindustrydata "github.com/microsoftgraph/msgraph-beta-sdk-go/models/industrydata"
//other-imports
)
requestBody := graphmodelsindustrydata.NewOutboundProvisioningFlowSet()
displayName := "Outbound Provisioning Flow Test"
requestBody.SetDisplayName(&displayName)
filter := graphmodelsindustrydata.NewBasicFilter()
attribute := graphmodels.ORGEXTERNALID_FILTEROPTIONS
filter.SetAttribute(&attribute)
in := []string {
"Quarter",
"Demo",
}
filter.SetIn(in)
requestBody.SetFilter(filter)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
outboundProvisioningFlowSets, err := graphClient.External().IndustryData().OutboundProvisioningFlowSets().Post(context.Background(), requestBody, nil)
重要
Microsoft Graph SDK では、既定で v1.0 バージョンの API が使用され、ベータ版で使用可能なすべての型、プロパティ、API がサポートされているわけではありません。 SDK を使用してベータ API にアクセスする方法の詳細については、「ベータ API で Microsoft Graph SDK を使用する」を参照してください。
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
com.microsoft.graph.beta.models.industrydata.OutboundProvisioningFlowSet outboundProvisioningFlowSet = new com.microsoft.graph.beta.models.industrydata.OutboundProvisioningFlowSet();
outboundProvisioningFlowSet.setOdataType("#microsoft.graph.industryData.outboundProvisioningFlowSet");
outboundProvisioningFlowSet.setDisplayName("Outbound Provisioning Flow Test");
com.microsoft.graph.beta.models.industrydata.BasicFilter filter = new com.microsoft.graph.beta.models.industrydata.BasicFilter();
filter.setOdataType("#microsoft.graph.industryData.basicFilter");
filter.setAttribute(com.microsoft.graph.beta.models.industrydata.FilterOptions.OrgExternalId);
LinkedList<String> in = new LinkedList<String>();
in.add("Quarter");
in.add("Demo");
filter.setIn(in);
outboundProvisioningFlowSet.setFilter(filter);
com.microsoft.graph.models.industrydata.OutboundProvisioningFlowSet result = graphClient.external().industryData().outboundProvisioningFlowSets().post(outboundProvisioningFlowSet);
重要
Microsoft Graph SDK では、既定で v1.0 バージョンの API が使用され、ベータ版で使用可能なすべての型、プロパティ、API がサポートされているわけではありません。 SDK を使用してベータ API にアクセスする方法の詳細については、「ベータ API で Microsoft Graph SDK を使用する」を参照してください。
Microsoft Graph SDK では、既定で v1.0 バージョンの API が使用され、ベータ版で使用可能なすべての型、プロパティ、API がサポートされているわけではありません。 SDK を使用してベータ API にアクセスする方法の詳細については、「ベータ API で Microsoft Graph SDK を使用する」を参照してください。
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Models\IndustryData\OutboundProvisioningFlowSet;
use Microsoft\Graph\Beta\Generated\Models\IndustryData\BasicFilter;
use Microsoft\Graph\Beta\Generated\Models\IndustryData\FilterOptions;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new OutboundProvisioningFlowSet();
$requestBody->setOdataType('#microsoft.graph.industryData.outboundProvisioningFlowSet');
$requestBody->setDisplayName('Outbound Provisioning Flow Test');
$filter = new BasicFilter();
$filter->setOdataType('#microsoft.graph.industryData.basicFilter');
$filter->setAttribute(new FilterOptions('orgExternalId'));
$filter->setIn(['Quarter', 'Demo', ]);
$requestBody->setFilter($filter);
$result = $graphServiceClient->external()->industryData()->outboundProvisioningFlowSets()->post($requestBody)->wait();
重要
Microsoft Graph SDK では、既定で v1.0 バージョンの API が使用され、ベータ版で使用可能なすべての型、プロパティ、API がサポートされているわけではありません。 SDK を使用してベータ API にアクセスする方法の詳細については、「ベータ API で Microsoft Graph SDK を使用する」を参照してください。
Microsoft Graph SDK では、既定で v1.0 バージョンの API が使用され、ベータ版で使用可能なすべての型、プロパティ、API がサポートされているわけではありません。 SDK を使用してベータ API にアクセスする方法の詳細については、「ベータ API で Microsoft Graph SDK を使用する」を参照してください。
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.models.industry_data.outbound_provisioning_flow_set import OutboundProvisioningFlowSet
from msgraph_beta.generated.models.industry_data.basic_filter import BasicFilter
from msgraph_beta.generated.models.filter_options import FilterOptions
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = OutboundProvisioningFlowSet(
odata_type = "#microsoft.graph.industryData.outboundProvisioningFlowSet",
display_name = "Outbound Provisioning Flow Test",
filter = BasicFilter(
odata_type = "#microsoft.graph.industryData.basicFilter",
attribute = FilterOptions.OrgExternalId,
in = [
"Quarter",
"Demo",
],
),
)
result = await graph_client.external.industry_data.outbound_provisioning_flow_sets.post(request_body)
重要
Microsoft Graph SDK では、既定で v1.0 バージョンの API が使用され、ベータ版で使用可能なすべての型、プロパティ、API がサポートされているわけではありません。 SDK を使用してベータ API にアクセスする方法の詳細については、「ベータ API で Microsoft Graph SDK を使用する」を参照してください。