Skip to content

Commit

Permalink
CodeGen from PR 14198 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 6e61333b2bbd2e747bb22117a0e0e66defe05c33 into 741037c0809936531a00170da2bc9add30629aea
  • Loading branch information
SDKAuto committed Apr 29, 2021
1 parent 64dfd08 commit ee1f986
Show file tree
Hide file tree
Showing 19 changed files with 3,352 additions and 308 deletions.
2 changes: 1 addition & 1 deletion sdk/policy/arm-policy/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2020 Microsoft
Copyright (c) 2021 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
21 changes: 9 additions & 12 deletions sdk/policy/arm-policy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ npm install @azure/arm-policy

### How to use

#### nodejs - Authentication, client creation and get policyAssignments as an example written in TypeScript.
#### nodejs - client creation and getByPolicyMode dataPolicyManifests as an example written in TypeScript.

##### Install @azure/ms-rest-nodeauth

Expand All @@ -26,18 +26,16 @@ npm install @azure/ms-rest-nodeauth@"^3.0.0"

##### Sample code

While the below sample uses the interactive login, other authentication options can be found in the [README.md file of @azure/ms-rest-nodeauth](https://www.npmjs.com/package/@azure/ms-rest-nodeauth) package
```typescript
import * as msRest from "@azure/ms-rest-js";
import * as msRestAzure from "@azure/ms-rest-azure-js";
import * as msRestNodeAuth from "@azure/ms-rest-nodeauth";
import { PolicyClient, PolicyModels, PolicyMappers } from "@azure/arm-policy";
const msRestNodeAuth = require("@azure/ms-rest-nodeauth");
const { PolicyClient } = require("@azure/arm-policy");
const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];

msRestNodeAuth.interactiveLogin().then((creds) => {
const client = new PolicyClient(creds, subscriptionId);
const scope = "testscope";
const policyAssignmentName = "testpolicyAssignmentName";
client.policyAssignments.get(scope, policyAssignmentName).then((result) => {
const policyMode = "testpolicyMode";
client.dataPolicyManifests.getByPolicyMode(policyMode).then((result) => {
console.log("The result is:");
console.log(result);
});
Expand All @@ -46,7 +44,7 @@ msRestNodeAuth.interactiveLogin().then((creds) => {
});
```

#### browser - Authentication, client creation and get policyAssignments as an example written in JavaScript.
#### browser - Authentication, client creation and getByPolicyMode dataPolicyManifests as an example written in JavaScript.

##### Install @azure/ms-rest-browserauth

Expand Down Expand Up @@ -80,9 +78,8 @@ See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to
authManager.login();
}
const client = new Azure.ArmPolicy.PolicyClient(res.creds, subscriptionId);
const scope = "testscope";
const policyAssignmentName = "testpolicyAssignmentName";
client.policyAssignments.get(scope, policyAssignmentName).then((result) => {
const policyMode = "testpolicyMode";
client.dataPolicyManifests.getByPolicyMode(policyMode).then((result) => {
console.log("The result is:");
console.log(result);
}).catch((err) => {
Expand Down
4 changes: 2 additions & 2 deletions sdk/policy/arm-policy/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ const config = {
"@azure/ms-rest-azure-js": "msRestAzure"
},
banner: `/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
Expand Down
35 changes: 35 additions & 0 deletions sdk/policy/arm-policy/src/models/dataPolicyManifestsMappers.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/*
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/

export {
Alias,
AliasPath,
AliasPathMetadata,
AliasPattern,
BaseResource,
CloudError,
DataEffect,
DataManifestCustomResourceFunctionDefinition,
DataPolicyManifest,
DataPolicyManifestListResult,
ErrorAdditionalInfo,
ErrorResponse,
Identity,
NonComplianceMessage,
ParameterDefinitionsValue,
ParameterDefinitionsValueMetadata,
ParameterValuesValue,
PolicyAssignment,
PolicyDefinition,
PolicyDefinitionGroup,
PolicyDefinitionReference,
PolicyExemption,
PolicySetDefinition,
ResourceTypeAliases,
SystemData
} from "../models/mappers";
Loading

0 comments on commit ee1f986

Please sign in to comment.