swagger: '2.0' info: version: 2020-08-01-preview title: Microsoft Azure AccessControlClient AccessConnector SecurityUserConfigurations API schemes: - https tags: - name: SecurityUserConfigurations paths: ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkManagers/{networkManagerName}/securityUserConfigurations : get: tags: - SecurityUserConfigurations operationId: microsoftAzureSecurityuserconfigurationsList description: Lists all the network manager security user configurations in a network manager, in a paginated format. parameters: - $ref: ./network.json#/parameters/ApiVersionParameter - $ref: ./network.json#/parameters/SubscriptionIdParameter - $ref: '#/parameters/ResourceGroupNameParameter' - $ref: '#/parameters/NetworkManagerNameParameter' - $ref: '#/parameters/ListTopParameter' - $ref: '#/parameters/ListSkipTokenParameter' responses: '200': description: Get successful. The operation returns all security user configurations in the specified network manager, in a paginated format schema: $ref: '#/definitions/SecurityUserConfigurationListResult' default: description: Error response describing why the operation failed. schema: $ref: ./network.json#/definitions/CloudError x-ms-pageable: nextLinkName: nextLink x-ms-examples: List security user configurations in a network manager: $ref: ./examples/NetworkManagerSecurityUserConfigurationList.json summary: Microsoft Azure Get Subscriptions Subscriptionid Resourcegroups Resourcegroupname Providers Microsoft Network Networkmanagers Networkmanagername Securityuserconfigurations ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkManagers/{networkManagerName}/securityUserConfigurations/{configurationName} : parameters: - $ref: ./network.json#/parameters/ApiVersionParameter - $ref: ./network.json#/parameters/SubscriptionIdParameter - $ref: '#/parameters/ResourceGroupNameParameter' - $ref: '#/parameters/NetworkManagerNameParameter' - $ref: '#/parameters/SecurityConfigurationParameter' get: tags: - SecurityUserConfigurations description: Retrieves a network manager security user configuration. operationId: microsoftAzureSecurityuserconfigurationsGet responses: '200': description: Successful operation schema: $ref: '#/definitions/SecurityUserConfiguration' default: description: Error response describing why the operation failed. schema: $ref: ./network.json#/definitions/CloudError x-ms-examples: Get security user configurations: $ref: ./examples/NetworkManagerSecurityUserConfigurationGet.json summary: Microsoft Azure Get Subscriptions Subscriptionid Resourcegroups Resourcegroupname Providers Microsoft Network Networkmanagers Networkmanagername Securityuserconfigurations Configurationname put: tags: - SecurityUserConfigurations description: Creates or updates a network manager security user configuration. operationId: microsoftAzureSecurityuserconfigurationsCreateorupdate parameters: - name: securityUserConfiguration in: body required: true schema: $ref: '#/definitions/SecurityUserConfiguration' description: The security user configuration to create or update responses: '200': description: Updated Configuration schema: $ref: '#/definitions/SecurityUserConfiguration' '201': description: Created Configuration schema: $ref: '#/definitions/SecurityUserConfiguration' default: description: Error response describing why the operation failed. schema: $ref: ./network.json#/definitions/CloudError x-ms-examples: Create network manager security user configuration: $ref: ./examples/NetworkManagerSecurityUserConfigurationPut.json summary: Microsoft Azure Put Subscriptions Subscriptionid Resourcegroups Resourcegroupname Providers Microsoft Network Networkmanagers Networkmanagername Securityuserconfigurations Configurationname delete: tags: - SecurityUserConfigurations description: Deletes a network manager security user configuration. operationId: microsoftAzureSecurityuserconfigurationsDelete parameters: - $ref: '#/parameters/ForceDeleteParameter' responses: '200': description: OK '204': description: Request successful. Resource does not exist. default: description: Error response describing why the operation failed. schema: $ref: ./network.json#/definitions/CloudError x-ms-examples: Delete network manager security user configuration: $ref: ./examples/NetworkManagerSecurityUserConfigurationDelete.json summary: Microsoft Azure Delete Subscriptions Subscriptionid Resourcegroups Resourcegroupname Providers Microsoft Network Networkmanagers Networkmanagername Securityuserconfigurations Configurationname definitions: SecurityUserConfigurationPropertiesFormat: type: object properties: description: type: string description: A description of the security user configuration. deleteExistingNSGs: type: string enum: - 'False' - 'True' x-ms-enum: name: DeleteExistingNSGs modelAsString: true description: Flag if need to delete existing network security groups. provisioningState: readOnly: true $ref: ./network.json#/definitions/ProvisioningState description: The provisioning state of the resource. description: Defines the security user configuration properties. SecurityUserConfigurationListResult: type: object properties: value: type: array items: $ref: '#/definitions/SecurityUserConfiguration' description: Gets a page of security user configurations nextLink: type: string description: Gets the URL to get the next page of results. description: A list of network manager security user configurations SecurityUserConfiguration: type: object properties: properties: x-ms-client-flatten: true $ref: '#/definitions/SecurityUserConfigurationPropertiesFormat' description: Indicates the properties for the network manager security user configuration. systemData: readOnly: true description: The system metadata related to this resource. $ref: ./network.json#/definitions/SystemData allOf: - $ref: ./network.json#/definitions/ProxyResource description: Defines the security user configuration parameters: ForceDeleteParameter: name: force in: query required: false type: boolean description: Deletes the resource even if it is part of a deployed configuration. If the configuration has been deployed, the service will do a cleanup deployment in the background, prior to the delete. x-ms-parameter-location: method NetworkManagerNameParameter: name: networkManagerName in: path required: true type: string description: The name of the network manager. x-ms-parameter-location: method SecurityConfigurationParameter: name: configurationName in: path description: The name of the network manager Security Configuration. required: true type: string x-ms-parameter-location: method ListTopParameter: name: $top description: An optional query parameter which specifies the maximum number of records to be returned by the server. in: query required: false type: integer format: int32 minimum: 1 maximum: 20 x-ms-parameter-location: method ListSkipTokenParameter: name: $skipToken description: SkipToken is only used if a previous operation returned a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. in: query required: false type: string x-ms-parameter-location: method ResourceGroupNameParameter: name: resourceGroupName in: path required: true type: string description: The name of the resource group. x-ms-parameter-location: method x-ms-parameterized-host: hostTemplate: '{endpoint}' useSchemePrefix: false parameters: - $ref: '#/parameters/Endpoint'