Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Generated from 149ce8a94fd12df4868cb641d0d47bf83472b659
Improving Security Center pricing API documentation
  • Loading branch information
AutorestCI committed Jul 10, 2019
commit 7e8da58034458dc37d6f535db0121e5d8aea87fb
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ class Pricing(Resource):
:vartype name: str
:ivar type: Resource type
:vartype type: str
:param pricing_tier: Required. The pricing tier value. Possible values
include: 'Free', 'Standard'
:param pricing_tier: Required. The pricing tier value. Azure Security
Center is provided in two pricing tiers: free and standard, with the
standard tier available with a trial period. The standard tier offers
advanced security capabilities, while the free tier offers basic security
features. Possible values include: 'Free', 'Standard'
:type pricing_tier: str or ~azure.mgmt.security.models.PricingTier
:ivar free_trial_remaining_time: The duration left for the subscriptions
free trial period - in ISO 8601 format (e.g. P3Y6M4DT12H30M5S).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ class Pricing(Resource):
:vartype name: str
:ivar type: Resource type
:vartype type: str
:param pricing_tier: Required. The pricing tier value. Possible values
include: 'Free', 'Standard'
:param pricing_tier: Required. The pricing tier value. Azure Security
Center is provided in two pricing tiers: free and standard, with the
standard tier available with a trial period. The standard tier offers
advanced security capabilities, while the free tier offers basic security
features. Possible values include: 'Free', 'Standard'
:type pricing_tier: str or ~azure.mgmt.security.models.PricingTier
:ivar free_trial_remaining_time: The duration left for the subscriptions
free trial period - in ISO 8601 format (e.g. P3Y6M4DT12H30M5S).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ def __init__(self, client, config, serializer, deserializer):

def list(
self, custom_headers=None, raw=False, **operation_config):
"""Security pricing configurations in the subscription.
"""A given security pricing configuration in the subscription. Azure
Security Center is available in two pricing tiers: Free and Standard,
on multiple resource types, including Virtual machines, SQL Servers,
App service plans and Storage accounts.

:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
Expand Down Expand Up @@ -95,7 +98,10 @@ def list(

def get(
self, pricing_name, custom_headers=None, raw=False, **operation_config):
"""Security pricing configuration in the subscription.
"""A given security pricing configuration in the subscription. Azure
Security Center is available in two pricing tiers: Free and Standard,
on multiple resource types, including Virtual machines, SQL Servers,
App service plans and Storage accounts.

:param pricing_name: name of the pricing configuration
:type pricing_name: str
Expand Down Expand Up @@ -154,12 +160,18 @@ def get(

def update(
self, pricing_name, pricing_tier, custom_headers=None, raw=False, **operation_config):
"""Security pricing configuration in the subscription.
"""A given security pricing configuration in the subscription. Azure
Security Center is available in two pricing tiers: Free and Standard,
on multiple resource types, including Virtual machines, SQL Servers,
App service plans and Storage accounts.

:param pricing_name: name of the pricing configuration
:type pricing_name: str
:param pricing_tier: The pricing tier value. Possible values include:
'Free', 'Standard'
:param pricing_tier: The pricing tier value. Azure Security Center is
provided in two pricing tiers: free and standard, with the standard
tier available with a trial period. The standard tier offers advanced
security capabilities, while the free tier offers basic security
features. Possible values include: 'Free', 'Standard'
:type pricing_tier: str or ~azure.mgmt.security.models.PricingTier
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
Expand Down