diff --git a/README.md b/README.md index 0b623a5..d1cf4dc 100644 --- a/README.md +++ b/README.md @@ -82,11 +82,14 @@ The default URL for the Cloud Services Portal is `https://csp.infoblox.com`. If from universal_ddi_client import Configuration config = Configuration( - csp_url = "https://csp.eu.infoblox.com", + portal_url = "https://csp.eu.infoblox.com", ) ``` -You can also set the URL using the environment variable `INFOBLOX_PORTAL_URL` +You can also set the URL using the environment variable `INFOBLOX_PORTAL_URL` or `BLOXONE_CSP_URL`. + +> **Note:** `BLOXONE_CSP_URL` is deprecated and will be removed in future releases. It is recommended to use `INFOBLOX_PORTAL_URL` instead. + ### Authorization @@ -98,13 +101,15 @@ To use an API key with Infoblox API, you can create a new instance of Configurat from universal_ddi_client import Configuration config = Configuration( - api_key = "API_KEY", + portal_key = "PORTAL_KEY", ) ``` -Alternatively, You can also set the API key using the environment variable `INFOBLOX_PORTAL_KEY` +Alternatively, You can also set the API key using the environment variable `INFOBLOX_PORTAL_KEY` or `BLOXONE_API_KEY` . + +> **Note:** `BLOXONE_API_KEY` is deprecated and will be removed in future releases. It is recommended to use `INFOBLOX_PORTAL_KEY` instead. -Note: The API key is a secret and should be handled securely. Hardcoding the API key in your code is not recommended. +> **Note:** The API key is a secret and should be handled securely. Hardcoding the API key in your code is not recommended. ### Default Tags diff --git a/src/anycast/README.md b/src/anycast/README.md index fa9c283..8b16378 100644 --- a/src/anycast/README.md +++ b/src/anycast/README.md @@ -33,17 +33,17 @@ import anycast from anycast.rest import ApiException from pprint import pprint -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client diff --git a/src/anycast/docs/OnPremAnycastManagerApi.md b/src/anycast/docs/OnPremAnycastManagerApi.md index 652f154..c9c1bbd 100644 --- a/src/anycast/docs/OnPremAnycastManagerApi.md +++ b/src/anycast/docs/OnPremAnycastManagerApi.md @@ -42,20 +42,20 @@ import anycast from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = anycast.OnPremAnycastManagerApi(api_client) body = anycast.AnycastConfig() # AnycastConfig | @@ -118,20 +118,20 @@ import anycast from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = anycast.OnPremAnycastManagerApi(api_client) id = 56 # int | @@ -194,20 +194,20 @@ import anycast from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = anycast.OnPremAnycastManagerApi(api_client) id = 56 # int | @@ -270,20 +270,20 @@ import anycast from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = anycast.OnPremAnycastManagerApi(api_client) id = 56 # int | @@ -346,20 +346,20 @@ import anycast from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = anycast.OnPremAnycastManagerApi(api_client) id = 56 # int | @@ -422,20 +422,20 @@ import anycast from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = anycast.OnPremAnycastManagerApi(api_client) id = 56 # int | @@ -498,20 +498,20 @@ import anycast from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = anycast.OnPremAnycastManagerApi(api_client) @@ -579,20 +579,20 @@ import anycast from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = anycast.OnPremAnycastManagerApi(api_client) id = 56 # int | @@ -655,20 +655,20 @@ import anycast from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = anycast.OnPremAnycastManagerApi(api_client) ophid = 'ophid_example' # str | @@ -735,20 +735,20 @@ import anycast from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = anycast.OnPremAnycastManagerApi(api_client) ophid = 'ophid_example' # str | @@ -815,20 +815,20 @@ import anycast from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = anycast.OnPremAnycastManagerApi(api_client) id = 56 # int | @@ -891,20 +891,20 @@ import anycast from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = anycast.OnPremAnycastManagerApi(api_client) ophid = 'ophid_example' # str | @@ -967,20 +967,20 @@ import anycast from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = anycast.OnPremAnycastManagerApi(api_client) ophid = 'ophid_example' # str | @@ -1043,20 +1043,20 @@ import anycast from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = anycast.OnPremAnycastManagerApi(api_client) @@ -1124,20 +1124,20 @@ import anycast from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = anycast.OnPremAnycastManagerApi(api_client) id = 56 # int | @@ -1200,20 +1200,20 @@ import anycast from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = anycast.OnPremAnycastManagerApi(api_client) id = 56 # int | @@ -1278,20 +1278,20 @@ import anycast from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = anycast.OnPremAnycastManagerApi(api_client) id = 56 # int | Numeric host identifier diff --git a/src/cloud_discovery/README.md b/src/cloud_discovery/README.md index cf26521..14a67fa 100644 --- a/src/cloud_discovery/README.md +++ b/src/cloud_discovery/README.md @@ -33,17 +33,17 @@ import cloud_discovery from cloud_discovery.rest import ApiException from pprint import pprint -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client diff --git a/src/cloud_discovery/docs/AccountsApi.md b/src/cloud_discovery/docs/AccountsApi.md index 2e3c0ae..f4f7f36 100644 --- a/src/cloud_discovery/docs/AccountsApi.md +++ b/src/cloud_discovery/docs/AccountsApi.md @@ -26,20 +26,20 @@ import cloud_discovery from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = cloud_discovery.AccountsApi(api_client) diff --git a/src/cloud_discovery/docs/ProvidersApi.md b/src/cloud_discovery/docs/ProvidersApi.md index f46ce0d..34f7514 100644 --- a/src/cloud_discovery/docs/ProvidersApi.md +++ b/src/cloud_discovery/docs/ProvidersApi.md @@ -30,20 +30,20 @@ import cloud_discovery from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = cloud_discovery.ProvidersApi(api_client) body = cloud_discovery.DiscoveryConfig() # DiscoveryConfig | @@ -106,20 +106,20 @@ import cloud_discovery from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = cloud_discovery.ProvidersApi(api_client) id = 'id_example' # str | @@ -180,20 +180,20 @@ import cloud_discovery from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = cloud_discovery.ProvidersApi(api_client) @@ -262,20 +262,20 @@ import cloud_discovery from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = cloud_discovery.ProvidersApi(api_client) id = 'id_example' # str | @@ -339,20 +339,20 @@ import cloud_discovery from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = cloud_discovery.ProvidersApi(api_client) id = 'id_example' # str | Auto-generated unique discovery config ID. Format BloxID. diff --git a/src/cloud_discovery/docs/SubAccountsApi.md b/src/cloud_discovery/docs/SubAccountsApi.md index 055b0d2..514eb40 100644 --- a/src/cloud_discovery/docs/SubAccountsApi.md +++ b/src/cloud_discovery/docs/SubAccountsApi.md @@ -26,20 +26,20 @@ import cloud_discovery from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = cloud_discovery.SubAccountsApi(api_client) body = cloud_discovery.SubAccountListRequestV2() # SubAccountListRequestV2 | diff --git a/src/dfp/README.md b/src/dfp/README.md index 98c849a..b7a58c3 100644 --- a/src/dfp/README.md +++ b/src/dfp/README.md @@ -33,10 +33,10 @@ import dfp from dfp.rest import ApiException from pprint import pprint -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) diff --git a/src/dfp/docs/AccountsApi.md b/src/dfp/docs/AccountsApi.md index 8774f14..11cf533 100644 --- a/src/dfp/docs/AccountsApi.md +++ b/src/dfp/docs/AccountsApi.md @@ -25,15 +25,15 @@ import dfp from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dfp.AccountsApi(api_client) body = dfp.TypesConfigCheckRequest() # TypesConfigCheckRequest | diff --git a/src/dfp/docs/InfraServicesApi.md b/src/dfp/docs/InfraServicesApi.md index 550361f..ad91b2e 100644 --- a/src/dfp/docs/InfraServicesApi.md +++ b/src/dfp/docs/InfraServicesApi.md @@ -27,15 +27,15 @@ import dfp from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dfp.InfraServicesApi(api_client) payload_service_id = 'payload_service_id_example' # str | The DNS Forwarding Proxy Service ID object identifier. @@ -102,15 +102,15 @@ import dfp from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dfp.InfraServicesApi(api_client) @@ -176,15 +176,15 @@ import dfp from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dfp.InfraServicesApi(api_client) service_id = 'service_id_example' # str | The On-Prem Application Service identifier. For internal Use only diff --git a/src/dns_config/README.md b/src/dns_config/README.md index 9d0e03d..d36d5d9 100644 --- a/src/dns_config/README.md +++ b/src/dns_config/README.md @@ -33,17 +33,17 @@ import dns_config from dns_config.rest import ApiException from pprint import pprint -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client diff --git a/src/dns_config/docs/AclApi.md b/src/dns_config/docs/AclApi.md index 8f76c81..f0fd4e8 100644 --- a/src/dns_config/docs/AclApi.md +++ b/src/dns_config/docs/AclApi.md @@ -30,20 +30,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.AclApi(api_client) body = dns_config.ACL() # ACL | @@ -106,20 +106,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.AclApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -180,20 +180,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.AclApi(api_client) @@ -262,20 +262,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.AclApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -339,20 +339,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.AclApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/dns_config/docs/AuthNsgApi.md b/src/dns_config/docs/AuthNsgApi.md index a6be9a7..6fb067d 100644 --- a/src/dns_config/docs/AuthNsgApi.md +++ b/src/dns_config/docs/AuthNsgApi.md @@ -30,20 +30,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.AuthNsgApi(api_client) body = dns_config.AuthNSG() # AuthNSG | @@ -106,20 +106,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.AuthNsgApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -180,20 +180,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.AuthNsgApi(api_client) @@ -262,20 +262,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.AuthNsgApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -339,20 +339,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.AuthNsgApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/dns_config/docs/AuthZoneApi.md b/src/dns_config/docs/AuthZoneApi.md index cca79c4..9f22a23 100644 --- a/src/dns_config/docs/AuthZoneApi.md +++ b/src/dns_config/docs/AuthZoneApi.md @@ -31,20 +31,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.AuthZoneApi(api_client) body = dns_config.CopyAuthZone() # CopyAuthZone | @@ -107,20 +107,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.AuthZoneApi(api_client) body = dns_config.AuthZone() # AuthZone | @@ -184,20 +184,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.AuthZoneApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -258,20 +258,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.AuthZoneApi(api_client) @@ -341,20 +341,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.AuthZoneApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -419,20 +419,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.AuthZoneApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/dns_config/docs/CacheFlushApi.md b/src/dns_config/docs/CacheFlushApi.md index 1f84395..151e179 100644 --- a/src/dns_config/docs/CacheFlushApi.md +++ b/src/dns_config/docs/CacheFlushApi.md @@ -26,20 +26,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.CacheFlushApi(api_client) body = dns_config.CacheFlush() # CacheFlush | diff --git a/src/dns_config/docs/ConvertDomainNameApi.md b/src/dns_config/docs/ConvertDomainNameApi.md index fe9a0d2..27c9160 100644 --- a/src/dns_config/docs/ConvertDomainNameApi.md +++ b/src/dns_config/docs/ConvertDomainNameApi.md @@ -26,20 +26,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ConvertDomainNameApi(api_client) domain_name = 'domain_name_example' # str | Input domain name in either of IDN or punycode representations. diff --git a/src/dns_config/docs/ConvertRnameApi.md b/src/dns_config/docs/ConvertRnameApi.md index b836fc0..2a69438 100644 --- a/src/dns_config/docs/ConvertRnameApi.md +++ b/src/dns_config/docs/ConvertRnameApi.md @@ -26,20 +26,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ConvertRnameApi(api_client) email_address = 'email_address_example' # str | Input email address. diff --git a/src/dns_config/docs/DelegationApi.md b/src/dns_config/docs/DelegationApi.md index 6f984f9..3c04bcd 100644 --- a/src/dns_config/docs/DelegationApi.md +++ b/src/dns_config/docs/DelegationApi.md @@ -30,20 +30,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.DelegationApi(api_client) body = dns_config.Delegation() # Delegation | @@ -106,20 +106,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.DelegationApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -180,20 +180,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.DelegationApi(api_client) @@ -262,20 +262,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.DelegationApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -339,20 +339,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.DelegationApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/dns_config/docs/ForwardNsgApi.md b/src/dns_config/docs/ForwardNsgApi.md index 50eac61..5228f2e 100644 --- a/src/dns_config/docs/ForwardNsgApi.md +++ b/src/dns_config/docs/ForwardNsgApi.md @@ -30,20 +30,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ForwardNsgApi(api_client) body = dns_config.ForwardNSG() # ForwardNSG | @@ -106,20 +106,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ForwardNsgApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -180,20 +180,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ForwardNsgApi(api_client) @@ -262,20 +262,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ForwardNsgApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -339,20 +339,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ForwardNsgApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/dns_config/docs/ForwardZoneApi.md b/src/dns_config/docs/ForwardZoneApi.md index e25c979..5e09f77 100644 --- a/src/dns_config/docs/ForwardZoneApi.md +++ b/src/dns_config/docs/ForwardZoneApi.md @@ -31,20 +31,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ForwardZoneApi(api_client) body = dns_config.CopyForwardZone() # CopyForwardZone | @@ -107,20 +107,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ForwardZoneApi(api_client) body = dns_config.ForwardZone() # ForwardZone | @@ -183,20 +183,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ForwardZoneApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -257,20 +257,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ForwardZoneApi(api_client) @@ -339,20 +339,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ForwardZoneApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -416,20 +416,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ForwardZoneApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/dns_config/docs/GlobalApi.md b/src/dns_config/docs/GlobalApi.md index 2646f26..c2c4986 100644 --- a/src/dns_config/docs/GlobalApi.md +++ b/src/dns_config/docs/GlobalApi.md @@ -29,20 +29,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.GlobalApi(api_client) @@ -104,20 +104,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.GlobalApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -181,20 +181,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.GlobalApi(api_client) body = dns_config.DNSGlobal() # DNSGlobal | @@ -257,20 +257,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.GlobalApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/dns_config/docs/Host.md b/src/dns_config/docs/Host.md index b74048b..b870ebf 100644 --- a/src/dns_config/docs/Host.md +++ b/src/dns_config/docs/Host.md @@ -6,7 +6,7 @@ A DNS Host (_dns/host_) object associates DNS configuraton with hosts. Automat Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**absolute_name** | **str** | Host FQDN. | [optional] [readonly] +**absolute_name** | **str** | Host FQDN. | [optional] **address** | **str** | Host's primary IP Address. | [optional] [readonly] **anycast_addresses** | **List[str]** | Anycast address configured to the host. Order is not significant. | [optional] [readonly] **associated_server** | [**HostAssociatedServer**](HostAssociatedServer.md) | Host associated server configuration. | [optional] diff --git a/src/dns_config/docs/HostApi.md b/src/dns_config/docs/HostApi.md index b16e849..1fb9ae0 100644 --- a/src/dns_config/docs/HostApi.md +++ b/src/dns_config/docs/HostApi.md @@ -28,20 +28,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.HostApi(api_client) @@ -111,20 +111,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.HostApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -189,20 +189,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.HostApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/dns_config/docs/LbdnApi.md b/src/dns_config/docs/LbdnApi.md index af802a9..c3d8e94 100644 --- a/src/dns_config/docs/LbdnApi.md +++ b/src/dns_config/docs/LbdnApi.md @@ -30,20 +30,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.LbdnApi(api_client) body = dns_config.LBDN() # LBDN | @@ -106,20 +106,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.LbdnApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -180,20 +180,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.LbdnApi(api_client) @@ -262,20 +262,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.LbdnApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -339,20 +339,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.LbdnApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/dns_config/docs/ServerApi.md b/src/dns_config/docs/ServerApi.md index c2b0381..c13aaaa 100644 --- a/src/dns_config/docs/ServerApi.md +++ b/src/dns_config/docs/ServerApi.md @@ -30,20 +30,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ServerApi(api_client) body = dns_config.Server() # Server | @@ -107,20 +107,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ServerApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -181,20 +181,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ServerApi(api_client) @@ -264,20 +264,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ServerApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -342,20 +342,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ServerApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/dns_config/docs/ViewApi.md b/src/dns_config/docs/ViewApi.md index f8c8a28..c3bc222 100644 --- a/src/dns_config/docs/ViewApi.md +++ b/src/dns_config/docs/ViewApi.md @@ -31,20 +31,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ViewApi(api_client) body = dns_config.BulkCopyView() # BulkCopyView | @@ -107,20 +107,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ViewApi(api_client) body = dns_config.View() # View | @@ -184,20 +184,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ViewApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -258,20 +258,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ViewApi(api_client) @@ -341,20 +341,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ViewApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -419,20 +419,20 @@ import dns_config from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_config.ViewApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/dns_config/models/host.py b/src/dns_config/models/host.py index c5b8d13..f2f768b 100644 --- a/src/dns_config/models/host.py +++ b/src/dns_config/models/host.py @@ -133,11 +133,9 @@ def to_dict(self) -> Dict[str, Any]: * OpenAPI `readOnly` fields are excluded. * OpenAPI `readOnly` fields are excluded. * OpenAPI `readOnly` fields are excluded. - * OpenAPI `readOnly` fields are excluded. * Fields in `self.additional_properties` are added to the output dict. """ excluded_fields: Set[str] = set([ - "absolute_name", "address", "anycast_addresses", "comment", diff --git a/src/dns_data/README.md b/src/dns_data/README.md index b1808c5..c72cc13 100644 --- a/src/dns_data/README.md +++ b/src/dns_data/README.md @@ -33,17 +33,17 @@ import dns_data from dns_data.rest import ApiException from pprint import pprint -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client diff --git a/src/dns_data/docs/RecordApi.md b/src/dns_data/docs/RecordApi.md index ff8a8b7..a35be48 100644 --- a/src/dns_data/docs/RecordApi.md +++ b/src/dns_data/docs/RecordApi.md @@ -31,20 +31,20 @@ import dns_data from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_data.RecordApi(api_client) body = dns_data.Record() # Record | @@ -108,20 +108,20 @@ import dns_data from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_data.RecordApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -182,20 +182,20 @@ import dns_data from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_data.RecordApi(api_client) @@ -265,20 +265,20 @@ import dns_data from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_data.RecordApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -343,20 +343,20 @@ import dns_data from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_data.RecordApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -421,20 +421,20 @@ import dns_data from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = dns_data.RecordApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/fw/README.md b/src/fw/README.md index 45c6557..3d7da61 100644 --- a/src/fw/README.md +++ b/src/fw/README.md @@ -33,10 +33,10 @@ import fw from fw.rest import ApiException from pprint import pprint -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) diff --git a/src/fw/docs/AccessCodesApi.md b/src/fw/docs/AccessCodesApi.md index 5dffe72..098348e 100644 --- a/src/fw/docs/AccessCodesApi.md +++ b/src/fw/docs/AccessCodesApi.md @@ -30,15 +30,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.AccessCodesApi(api_client) body = fw.AccessCode() # AccessCode | The Bypass Code object. @@ -104,15 +104,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.AccessCodesApi(api_client) body = fw.AccessCodeDeleteRequest() # AccessCodeDeleteRequest | @@ -174,15 +174,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.AccessCodesApi(api_client) access_key = 'access_key_example' # str | The Bypass Code identifier. @@ -244,15 +244,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.AccessCodesApi(api_client) @@ -317,15 +317,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.AccessCodesApi(api_client) access_key = 'access_key_example' # str | The Bypass Code identifier. @@ -390,15 +390,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.AccessCodesApi(api_client) payload_access_key = 'payload_access_key_example' # str | Auto generated unique Bypass Code value diff --git a/src/fw/docs/AppApprovalsApi.md b/src/fw/docs/AppApprovalsApi.md index 2672962..d9ab777 100644 --- a/src/fw/docs/AppApprovalsApi.md +++ b/src/fw/docs/AppApprovalsApi.md @@ -25,15 +25,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.AppApprovalsApi(api_client) @@ -93,15 +93,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.AppApprovalsApi(api_client) body = fw.AppApprovalsReplaceRequest() # AppApprovalsReplaceRequest | @@ -162,15 +162,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.AppApprovalsApi(api_client) body = fw.AppApprovalsUpdateRequest() # AppApprovalsUpdateRequest | diff --git a/src/fw/docs/ApplicationFiltersApi.md b/src/fw/docs/ApplicationFiltersApi.md index dd1181c..d760a16 100644 --- a/src/fw/docs/ApplicationFiltersApi.md +++ b/src/fw/docs/ApplicationFiltersApi.md @@ -30,15 +30,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.ApplicationFiltersApi(api_client) body = fw.ApplicationFilter() # ApplicationFilter | The Application Filter object. @@ -101,15 +101,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.ApplicationFiltersApi(api_client) body = fw.ApplicationFiltersDeleteRequest() # ApplicationFiltersDeleteRequest | @@ -171,15 +171,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.ApplicationFiltersApi(api_client) id = 56 # int | The Application Filter object identifier. @@ -241,15 +241,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.ApplicationFiltersApi(api_client) @@ -317,15 +317,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.ApplicationFiltersApi(api_client) id = 56 # int | The Application Filter object identifier. @@ -390,15 +390,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.ApplicationFiltersApi(api_client) id = 56 # int | The Application Filter object identifier. diff --git a/src/fw/docs/CategoryFiltersApi.md b/src/fw/docs/CategoryFiltersApi.md index 2c52c7a..60a8835 100644 --- a/src/fw/docs/CategoryFiltersApi.md +++ b/src/fw/docs/CategoryFiltersApi.md @@ -30,15 +30,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.CategoryFiltersApi(api_client) body = fw.CategoryFilter() # CategoryFilter | The Category Filter object. @@ -103,15 +103,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.CategoryFiltersApi(api_client) body = fw.CategoryFiltersDeleteRequest() # CategoryFiltersDeleteRequest | @@ -173,15 +173,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.CategoryFiltersApi(api_client) id = 56 # int | The Category Filter object identifier. @@ -243,15 +243,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.CategoryFiltersApi(api_client) @@ -319,15 +319,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.CategoryFiltersApi(api_client) id = 56 # int | The Category Filter object identifier. @@ -393,15 +393,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.CategoryFiltersApi(api_client) id = 56 # int | The Category Filter object identifier. diff --git a/src/fw/docs/ContentCategoriesApi.md b/src/fw/docs/ContentCategoriesApi.md index 5b25371..1b53f16 100644 --- a/src/fw/docs/ContentCategoriesApi.md +++ b/src/fw/docs/ContentCategoriesApi.md @@ -25,15 +25,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.ContentCategoriesApi(api_client) diff --git a/src/fw/docs/InternalDomainListsApi.md b/src/fw/docs/InternalDomainListsApi.md index 93e82d5..3e9ad58 100644 --- a/src/fw/docs/InternalDomainListsApi.md +++ b/src/fw/docs/InternalDomainListsApi.md @@ -31,15 +31,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.InternalDomainListsApi(api_client) body = fw.InternalDomains() # InternalDomains | The Internal Domains object. @@ -104,15 +104,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.InternalDomainListsApi(api_client) body = fw.InternalDomainsDeleteRequest() # InternalDomainsDeleteRequest | @@ -175,15 +175,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.InternalDomainListsApi(api_client) id = 56 # int | The Internal Domains object identifiers. @@ -246,15 +246,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.InternalDomainListsApi(api_client) id = 56 # int | The Internal Domain List object identifier. @@ -321,15 +321,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.InternalDomainListsApi(api_client) @@ -397,15 +397,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.InternalDomainListsApi(api_client) id = 56 # int | The Internal Domains object identifier. @@ -474,15 +474,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.InternalDomainListsApi(api_client) id = 56 # int | The Internal Domain object identifier. diff --git a/src/fw/docs/NamedListItemsApi.md b/src/fw/docs/NamedListItemsApi.md index 8ef1c5a..5aa12ae 100644 --- a/src/fw/docs/NamedListItemsApi.md +++ b/src/fw/docs/NamedListItemsApi.md @@ -27,15 +27,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.NamedListItemsApi(api_client) id = 56 # int | The Named List object identifier. @@ -100,15 +100,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.NamedListItemsApi(api_client) id = 56 # int | The Named List object identifier. @@ -175,15 +175,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.NamedListItemsApi(api_client) id = 56 # int | The Named List object identifier. diff --git a/src/fw/docs/NamedListsApi.md b/src/fw/docs/NamedListsApi.md index d8a8257..2007597 100644 --- a/src/fw/docs/NamedListsApi.md +++ b/src/fw/docs/NamedListsApi.md @@ -33,15 +33,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.NamedListsApi(api_client) body = fw.NamedList() # NamedList | The Named List object. @@ -106,15 +106,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.NamedListsApi(api_client) body = fw.NamedListsDeleteRequest() # NamedListsDeleteRequest | @@ -177,15 +177,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.NamedListsApi(api_client) id = 56 # int | The Named List object identifiers. @@ -248,15 +248,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.NamedListsApi(api_client) @@ -324,15 +324,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.NamedListsApi(api_client) @@ -397,15 +397,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.NamedListsApi(api_client) body = fw.MultiListUpdate() # MultiListUpdate | @@ -470,15 +470,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.NamedListsApi(api_client) id = 56 # int | The Named List identifier. @@ -548,15 +548,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.NamedListsApi(api_client) id = 56 # int | The Named List object identifier. @@ -624,15 +624,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.NamedListsApi(api_client) id = 56 # int | The Named List object identifier. diff --git a/src/fw/docs/NetworkListsApi.md b/src/fw/docs/NetworkListsApi.md index d5c5b05..3ddd6c0 100644 --- a/src/fw/docs/NetworkListsApi.md +++ b/src/fw/docs/NetworkListsApi.md @@ -30,15 +30,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.NetworkListsApi(api_client) body = fw.NetworkList() # NetworkList | The Network List object. @@ -103,15 +103,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.NetworkListsApi(api_client) body = fw.NetworkListsDeleteRequest() # NetworkListsDeleteRequest | @@ -174,15 +174,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.NetworkListsApi(api_client) id = 56 # int | The Network List object identifier. @@ -245,15 +245,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.NetworkListsApi(api_client) @@ -319,15 +319,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.NetworkListsApi(api_client) id = 56 # int | The Network List object identifier. @@ -393,15 +393,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.NetworkListsApi(api_client) id = 56 # int | The Network List object identifier. diff --git a/src/fw/docs/PopRegionsApi.md b/src/fw/docs/PopRegionsApi.md index aac80d1..235c69b 100644 --- a/src/fw/docs/PopRegionsApi.md +++ b/src/fw/docs/PopRegionsApi.md @@ -26,15 +26,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.PopRegionsApi(api_client) @@ -102,15 +102,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.PopRegionsApi(api_client) id = 56 # int | The PoP region object identifier diff --git a/src/fw/docs/SecurityPoliciesApi.md b/src/fw/docs/SecurityPoliciesApi.md index 9308f49..ed38f5f 100644 --- a/src/fw/docs/SecurityPoliciesApi.md +++ b/src/fw/docs/SecurityPoliciesApi.md @@ -30,15 +30,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.SecurityPoliciesApi(api_client) body = fw.SecurityPolicy() # SecurityPolicy | The Security Policy object. @@ -104,15 +104,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.SecurityPoliciesApi(api_client) body = fw.SecurityPolicyDeleteRequest() # SecurityPolicyDeleteRequest | @@ -174,15 +174,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.SecurityPoliciesApi(api_client) id = 56 # int | The Security Policy object identifiers. @@ -244,15 +244,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.SecurityPoliciesApi(api_client) @@ -321,15 +321,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.SecurityPoliciesApi(api_client) id = 56 # int | The Security Policy object identifier. @@ -395,15 +395,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.SecurityPoliciesApi(api_client) id = 56 # int | The Security Policy object identifier. diff --git a/src/fw/docs/SecurityPolicyRulesApi.md b/src/fw/docs/SecurityPolicyRulesApi.md index 70a250c..a45c4ac 100644 --- a/src/fw/docs/SecurityPolicyRulesApi.md +++ b/src/fw/docs/SecurityPolicyRulesApi.md @@ -25,15 +25,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.SecurityPolicyRulesApi(api_client) diff --git a/src/fw/docs/ThreatFeedsApi.md b/src/fw/docs/ThreatFeedsApi.md index d26bcf7..848f953 100644 --- a/src/fw/docs/ThreatFeedsApi.md +++ b/src/fw/docs/ThreatFeedsApi.md @@ -25,15 +25,15 @@ import fw from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = fw.ThreatFeedsApi(api_client) diff --git a/src/infra_mgmt/README.md b/src/infra_mgmt/README.md index 897508a..f69c8b5 100644 --- a/src/infra_mgmt/README.md +++ b/src/infra_mgmt/README.md @@ -96,17 +96,17 @@ import infra_mgmt from infra_mgmt.rest import ApiException from pprint import pprint -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client diff --git a/src/infra_mgmt/docs/DetailApi.md b/src/infra_mgmt/docs/DetailApi.md index 41ae0d0..559f97b 100644 --- a/src/infra_mgmt/docs/DetailApi.md +++ b/src/infra_mgmt/docs/DetailApi.md @@ -25,20 +25,20 @@ import infra_mgmt from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_mgmt.DetailApi(api_client) @@ -105,20 +105,20 @@ import infra_mgmt from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_mgmt.DetailApi(api_client) diff --git a/src/infra_mgmt/docs/HostsApi.md b/src/infra_mgmt/docs/HostsApi.md index bca0c05..b18f19f 100644 --- a/src/infra_mgmt/docs/HostsApi.md +++ b/src/infra_mgmt/docs/HostsApi.md @@ -34,20 +34,20 @@ import infra_mgmt from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_mgmt.HostsApi(api_client) body = infra_mgmt.AssignTagsRequest() # AssignTagsRequest | @@ -110,20 +110,20 @@ import infra_mgmt from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_mgmt.HostsApi(api_client) body = infra_mgmt.Host() # Host | @@ -186,20 +186,20 @@ import infra_mgmt from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_mgmt.HostsApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -260,20 +260,20 @@ import infra_mgmt from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_mgmt.HostsApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -336,20 +336,20 @@ import infra_mgmt from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_mgmt.HostsApi(api_client) @@ -418,20 +418,20 @@ import infra_mgmt from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_mgmt.HostsApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -492,20 +492,20 @@ import infra_mgmt from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_mgmt.HostsApi(api_client) from_resource_id = 'from_resource_id_example' # str | An application specific resource identity of a resource @@ -572,20 +572,20 @@ import infra_mgmt from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_mgmt.HostsApi(api_client) body = infra_mgmt.UnassignTagsRequest() # UnassignTagsRequest | @@ -648,20 +648,20 @@ import infra_mgmt from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_mgmt.HostsApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/infra_mgmt/docs/ServicesApi.md b/src/infra_mgmt/docs/ServicesApi.md index 18b8153..77400f9 100644 --- a/src/infra_mgmt/docs/ServicesApi.md +++ b/src/infra_mgmt/docs/ServicesApi.md @@ -31,20 +31,20 @@ import infra_mgmt from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_mgmt.ServicesApi(api_client) @@ -106,20 +106,20 @@ import infra_mgmt from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_mgmt.ServicesApi(api_client) body = infra_mgmt.Service() # Service | @@ -182,20 +182,20 @@ import infra_mgmt from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_mgmt.ServicesApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -254,20 +254,20 @@ import infra_mgmt from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_mgmt.ServicesApi(api_client) @@ -336,20 +336,20 @@ import infra_mgmt from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_mgmt.ServicesApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -412,20 +412,20 @@ import infra_mgmt from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_mgmt.ServicesApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/infra_provision/README.md b/src/infra_provision/README.md index 7a1e18a..71452e4 100644 --- a/src/infra_provision/README.md +++ b/src/infra_provision/README.md @@ -33,17 +33,17 @@ import infra_provision from infra_provision.rest import ApiException from pprint import pprint -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client diff --git a/src/infra_provision/docs/UICSRApi.md b/src/infra_provision/docs/UICSRApi.md index d58b5d8..2ed772b 100644 --- a/src/infra_provision/docs/UICSRApi.md +++ b/src/infra_provision/docs/UICSRApi.md @@ -28,20 +28,20 @@ import infra_provision from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_provision.UICSRApi(api_client) activation_code = 'activation_code_example' # str | activation code is used by the clients to track the approval of the CSR @@ -104,20 +104,20 @@ import infra_provision from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_provision.UICSRApi(api_client) activation_code = 'activation_code_example' # str | activation code is used by the clients to track the approval of the CSR @@ -180,20 +180,20 @@ import infra_provision from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_provision.UICSRApi(api_client) @@ -261,20 +261,20 @@ import infra_provision from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_provision.UICSRApi(api_client) cert_serial = 'cert_serial_example' # str | x509 serial number of the certificate. This can be obtained by parsing the client certificate file on the onprem. Either cert_serial or ophid is required @@ -339,20 +339,20 @@ import infra_provision from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_provision.UICSRApi(api_client) ophid = 'ophid_example' # str | On-prem host ID which can be obtained either from on-prem or NIOS-X UI portal(Manage > Infrastructure > Hosts > Select the onprem > click on 3 dots on top right side > General Information > Ophid) . diff --git a/src/infra_provision/docs/UIJoinTokenApi.md b/src/infra_provision/docs/UIJoinTokenApi.md index 792f497..1d62bcd 100644 --- a/src/infra_provision/docs/UIJoinTokenApi.md +++ b/src/infra_provision/docs/UIJoinTokenApi.md @@ -31,20 +31,20 @@ import infra_provision from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_provision.UIJoinTokenApi(api_client) body = infra_provision.JoinToken() # JoinToken | @@ -105,20 +105,20 @@ import infra_provision from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_provision.UIJoinTokenApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -177,20 +177,20 @@ import infra_provision from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_provision.UIJoinTokenApi(api_client) body = infra_provision.DeleteJoinTokensRequest() # DeleteJoinTokensRequest | @@ -251,20 +251,20 @@ import infra_provision from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_provision.UIJoinTokenApi(api_client) @@ -330,20 +330,20 @@ import infra_provision from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_provision.UIJoinTokenApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -407,20 +407,20 @@ import infra_provision from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = infra_provision.UIJoinTokenApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/README.md b/src/ipam/README.md index 2033da4..278899a 100644 --- a/src/ipam/README.md +++ b/src/ipam/README.md @@ -33,17 +33,17 @@ import ipam from ipam.rest import ApiException from pprint import pprint -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client diff --git a/src/ipam/docs/Address.md b/src/ipam/docs/Address.md index 72a6ecf..95e06db 100644 --- a/src/ipam/docs/Address.md +++ b/src/ipam/docs/Address.md @@ -6,7 +6,7 @@ An __Address__ object (_ipam/address_) represents any single IP address within a Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**address** | **str** | The address in form \"a.b.c.d\". | +**address** | **str** | The address in form \"a.b.c.d\". | [optional] **comment** | **str** | The description for the address object. May contain 0 to 1024 characters. Can include UTF-8. | [optional] **compartment_id** | **str** | The compartment associated with the object. If no compartment is associated with the object, the value defaults to empty. | [optional] [readonly] **created_at** | **datetime** | Time when the object has been created. | [optional] [readonly] diff --git a/src/ipam/docs/AddressApi.md b/src/ipam/docs/AddressApi.md index 8065b66..f1d3d64 100644 --- a/src/ipam/docs/AddressApi.md +++ b/src/ipam/docs/AddressApi.md @@ -30,20 +30,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AddressApi(api_client) body = ipam.Address() # Address | @@ -106,20 +106,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AddressApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -180,20 +180,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AddressApi(api_client) @@ -264,20 +264,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AddressApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -341,20 +341,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AddressApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/docs/AddressBlockApi.md b/src/ipam/docs/AddressBlockApi.md index f55fc47..ccaabc7 100644 --- a/src/ipam/docs/AddressBlockApi.md +++ b/src/ipam/docs/AddressBlockApi.md @@ -38,20 +38,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AddressBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -116,20 +116,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AddressBlockApi(api_client) body = ipam.AddressBlock() # AddressBlock | @@ -193,20 +193,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AddressBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -274,20 +274,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AddressBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -352,20 +352,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AddressBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -434,20 +434,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AddressBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -508,20 +508,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AddressBlockApi(api_client) @@ -591,20 +591,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AddressBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -667,20 +667,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AddressBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -749,20 +749,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AddressBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -827,20 +827,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AddressBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -909,20 +909,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AddressBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -987,20 +987,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AddressBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/docs/AsmApi.md b/src/ipam/docs/AsmApi.md index 738c18b..2ac4722 100644 --- a/src/ipam/docs/AsmApi.md +++ b/src/ipam/docs/AsmApi.md @@ -28,20 +28,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AsmApi(api_client) body = ipam.ASM() # ASM | @@ -104,20 +104,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AsmApi(api_client) @@ -180,20 +180,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.AsmApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/docs/ConfigProfileApi.md b/src/ipam/docs/ConfigProfileApi.md index 381e689..dd79cd6 100644 --- a/src/ipam/docs/ConfigProfileApi.md +++ b/src/ipam/docs/ConfigProfileApi.md @@ -31,20 +31,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.ConfigProfileApi(api_client) body = ipam.AssociateConfigProfileToObjectsRequest() # AssociateConfigProfileToObjectsRequest | @@ -107,20 +107,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.ConfigProfileApi(api_client) body = ipam.AssociateObjectToConfigProfilesRequest() # AssociateObjectToConfigProfilesRequest | @@ -183,20 +183,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.ConfigProfileApi(api_client) body = ipam.DisassociateConfigProfileFromObjectsRequest() # DisassociateConfigProfileFromObjectsRequest | @@ -259,20 +259,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.ConfigProfileApi(api_client) body = ipam.DisassociateObjectFromConfigProfilesRequest() # DisassociateObjectFromConfigProfilesRequest | @@ -335,20 +335,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.ConfigProfileApi(api_client) @@ -410,20 +410,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.ConfigProfileApi(api_client) diff --git a/src/ipam/docs/DhcpHostApi.md b/src/ipam/docs/DhcpHostApi.md index edb0033..f11bb73 100644 --- a/src/ipam/docs/DhcpHostApi.md +++ b/src/ipam/docs/DhcpHostApi.md @@ -29,20 +29,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.DhcpHostApi(api_client) @@ -111,20 +111,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.DhcpHostApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -187,20 +187,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.DhcpHostApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -264,20 +264,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.DhcpHostApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/docs/DnsUsageApi.md b/src/ipam/docs/DnsUsageApi.md index c593eff..e1b138e 100644 --- a/src/ipam/docs/DnsUsageApi.md +++ b/src/ipam/docs/DnsUsageApi.md @@ -27,20 +27,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.DnsUsageApi(api_client) @@ -107,20 +107,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.DnsUsageApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/docs/FilterApi.md b/src/ipam/docs/FilterApi.md index fe46aca..1910e14 100644 --- a/src/ipam/docs/FilterApi.md +++ b/src/ipam/docs/FilterApi.md @@ -26,20 +26,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.FilterApi(api_client) diff --git a/src/ipam/docs/FixedAddressApi.md b/src/ipam/docs/FixedAddressApi.md index e46e8e1..c77923e 100644 --- a/src/ipam/docs/FixedAddressApi.md +++ b/src/ipam/docs/FixedAddressApi.md @@ -30,20 +30,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.FixedAddressApi(api_client) body = ipam.FixedAddress() # FixedAddress | @@ -107,20 +107,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.FixedAddressApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -181,20 +181,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.FixedAddressApi(api_client) @@ -264,20 +264,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.FixedAddressApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -342,20 +342,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.FixedAddressApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/docs/GlobalApi.md b/src/ipam/docs/GlobalApi.md index 00ae5df..5bda754 100644 --- a/src/ipam/docs/GlobalApi.md +++ b/src/ipam/docs/GlobalApi.md @@ -29,20 +29,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.GlobalApi(api_client) @@ -104,20 +104,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.GlobalApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -181,20 +181,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.GlobalApi(api_client) body = ipam.DHCPGlobal() # DHCPGlobal | @@ -257,20 +257,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.GlobalApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/docs/HaGroupApi.md b/src/ipam/docs/HaGroupApi.md index b9c8666..bdeaac0 100644 --- a/src/ipam/docs/HaGroupApi.md +++ b/src/ipam/docs/HaGroupApi.md @@ -30,20 +30,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.HaGroupApi(api_client) body = ipam.HAGroup() # HAGroup | @@ -106,20 +106,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.HaGroupApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -180,20 +180,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.HaGroupApi(api_client) @@ -263,20 +263,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.HaGroupApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -341,20 +341,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.HaGroupApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/docs/HardwareFilterApi.md b/src/ipam/docs/HardwareFilterApi.md index edd5540..f6be31e 100644 --- a/src/ipam/docs/HardwareFilterApi.md +++ b/src/ipam/docs/HardwareFilterApi.md @@ -30,20 +30,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.HardwareFilterApi(api_client) body = ipam.HardwareFilter() # HardwareFilter | @@ -106,20 +106,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.HardwareFilterApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -180,20 +180,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.HardwareFilterApi(api_client) @@ -262,20 +262,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.HardwareFilterApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -339,20 +339,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.HardwareFilterApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/docs/IpSpaceApi.md b/src/ipam/docs/IpSpaceApi.md index 348aadf..023a0a8 100644 --- a/src/ipam/docs/IpSpaceApi.md +++ b/src/ipam/docs/IpSpaceApi.md @@ -33,20 +33,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.IpSpaceApi(api_client) body = ipam.BulkCopyIPSpace() # BulkCopyIPSpace | @@ -109,20 +109,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.IpSpaceApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -187,20 +187,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.IpSpaceApi(api_client) body = ipam.IPSpace() # IPSpace | @@ -264,20 +264,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.IpSpaceApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -338,20 +338,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.IpSpaceApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -415,20 +415,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.IpSpaceApi(api_client) @@ -498,20 +498,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.IpSpaceApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -576,20 +576,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.IpSpaceApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/docs/IpamHostApi.md b/src/ipam/docs/IpamHostApi.md index c04c448..c07b8b7 100644 --- a/src/ipam/docs/IpamHostApi.md +++ b/src/ipam/docs/IpamHostApi.md @@ -30,20 +30,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.IpamHostApi(api_client) body = ipam.IpamHost() # IpamHost | @@ -106,20 +106,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.IpamHostApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -180,20 +180,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.IpamHostApi(api_client) @@ -262,20 +262,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.IpamHostApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -340,20 +340,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.IpamHostApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/docs/LeasesCommandApi.md b/src/ipam/docs/LeasesCommandApi.md index 4fb0333..9d7ed31 100644 --- a/src/ipam/docs/LeasesCommandApi.md +++ b/src/ipam/docs/LeasesCommandApi.md @@ -26,20 +26,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.LeasesCommandApi(api_client) body = ipam.LeasesCommand() # LeasesCommand | diff --git a/src/ipam/docs/MacAddressItemApi.md b/src/ipam/docs/MacAddressItemApi.md index 329bb5e..8f9212c 100644 --- a/src/ipam/docs/MacAddressItemApi.md +++ b/src/ipam/docs/MacAddressItemApi.md @@ -32,20 +32,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.MacAddressItemApi(api_client) body = ipam.BulkMacAddressItem() # BulkMacAddressItem | @@ -108,20 +108,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.MacAddressItemApi(api_client) body = ipam.MacAddressItem() # MacAddressItem | @@ -184,20 +184,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.MacAddressItemApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -258,20 +258,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.MacAddressItemApi(api_client) @@ -338,20 +338,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.MacAddressItemApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -415,20 +415,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.MacAddressItemApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -493,20 +493,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.MacAddressItemApi(api_client) body = ipam.MacAddressItemUpload() # MacAddressItemUpload | diff --git a/src/ipam/docs/OptionCodeApi.md b/src/ipam/docs/OptionCodeApi.md index 416662c..d69843a 100644 --- a/src/ipam/docs/OptionCodeApi.md +++ b/src/ipam/docs/OptionCodeApi.md @@ -30,20 +30,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionCodeApi(api_client) body = ipam.OptionCode() # OptionCode | @@ -106,20 +106,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionCodeApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -180,20 +180,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionCodeApi(api_client) @@ -260,20 +260,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionCodeApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -337,20 +337,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionCodeApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/docs/OptionFilterApi.md b/src/ipam/docs/OptionFilterApi.md index 4dd7a59..2fc509f 100644 --- a/src/ipam/docs/OptionFilterApi.md +++ b/src/ipam/docs/OptionFilterApi.md @@ -30,20 +30,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionFilterApi(api_client) body = ipam.OptionFilter() # OptionFilter | @@ -106,20 +106,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionFilterApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -180,20 +180,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionFilterApi(api_client) @@ -262,20 +262,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionFilterApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -339,20 +339,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionFilterApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/docs/OptionGroupApi.md b/src/ipam/docs/OptionGroupApi.md index fec9523..14a4fc9 100644 --- a/src/ipam/docs/OptionGroupApi.md +++ b/src/ipam/docs/OptionGroupApi.md @@ -30,20 +30,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionGroupApi(api_client) body = ipam.OptionGroup() # OptionGroup | @@ -106,20 +106,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionGroupApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -180,20 +180,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionGroupApi(api_client) @@ -262,20 +262,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionGroupApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -339,20 +339,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionGroupApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/docs/OptionSpaceApi.md b/src/ipam/docs/OptionSpaceApi.md index 55747a2..93935e2 100644 --- a/src/ipam/docs/OptionSpaceApi.md +++ b/src/ipam/docs/OptionSpaceApi.md @@ -30,20 +30,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionSpaceApi(api_client) body = ipam.OptionSpace() # OptionSpace | @@ -106,20 +106,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionSpaceApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -180,20 +180,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionSpaceApi(api_client) @@ -262,20 +262,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionSpaceApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -339,20 +339,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.OptionSpaceApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/docs/RangeApi.md b/src/ipam/docs/RangeApi.md index 8f71c8a..a60f343 100644 --- a/src/ipam/docs/RangeApi.md +++ b/src/ipam/docs/RangeApi.md @@ -32,20 +32,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.RangeApi(api_client) body = ipam.Range() # Range | @@ -109,20 +109,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.RangeApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -187,20 +187,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.RangeApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -261,20 +261,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.RangeApi(api_client) @@ -344,20 +344,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.RangeApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -422,20 +422,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.RangeApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -500,20 +500,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.RangeApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/docs/ServerApi.md b/src/ipam/docs/ServerApi.md index 7d137b3..db7b519 100644 --- a/src/ipam/docs/ServerApi.md +++ b/src/ipam/docs/ServerApi.md @@ -30,20 +30,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.ServerApi(api_client) body = ipam.Server() # Server | @@ -107,20 +107,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.ServerApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -181,20 +181,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.ServerApi(api_client) @@ -264,20 +264,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.ServerApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -342,20 +342,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.ServerApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/docs/ServiceApi.md b/src/ipam/docs/ServiceApi.md index 303b49d..0426d84 100644 --- a/src/ipam/docs/ServiceApi.md +++ b/src/ipam/docs/ServiceApi.md @@ -27,20 +27,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.ServiceApi(api_client) @@ -109,20 +109,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.ServiceApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/docs/SubnetApi.md b/src/ipam/docs/SubnetApi.md index e3e3142..49124bc 100644 --- a/src/ipam/docs/SubnetApi.md +++ b/src/ipam/docs/SubnetApi.md @@ -34,20 +34,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.SubnetApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -112,20 +112,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.SubnetApi(api_client) body = ipam.Subnet() # Subnet | @@ -189,20 +189,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.SubnetApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -267,20 +267,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.SubnetApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -341,20 +341,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.SubnetApi(api_client) @@ -424,20 +424,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.SubnetApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -501,20 +501,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.SubnetApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -579,20 +579,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.SubnetApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -657,20 +657,20 @@ import ipam from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam.SubnetApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam/models/address.py b/src/ipam/models/address.py index f5d1d75..a7646a9 100644 --- a/src/ipam/models/address.py +++ b/src/ipam/models/address.py @@ -29,7 +29,8 @@ class Address(BaseModel): """ An __Address__ object (_ipam/address_) represents any single IP address within a given IP space. """ # noqa: E501 - address: StrictStr = Field(description="The address in form \"a.b.c.d\".") + address: Optional[StrictStr] = Field( + default=None, description="The address in form \"a.b.c.d\".") comment: Optional[StrictStr] = Field( default=None, description= diff --git a/src/ipam_federation/README.md b/src/ipam_federation/README.md index 80769b2..bb3372b 100644 --- a/src/ipam_federation/README.md +++ b/src/ipam_federation/README.md @@ -29,21 +29,21 @@ you can run the following: ```python -import ipam_federation +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com"import ipam_federation from ipam_federation.rest import ApiException from pprint import pprint -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client diff --git a/src/ipam_federation/docs/FederatedBlockApi.md b/src/ipam_federation/docs/FederatedBlockApi.md index d306d34..5e7f3e3 100644 --- a/src/ipam_federation/docs/FederatedBlockApi.md +++ b/src/ipam_federation/docs/FederatedBlockApi.md @@ -30,20 +30,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.FederatedBlockApi(api_client) body = ipam_federation.FederatedBlock() # FederatedBlock | @@ -106,20 +106,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.FederatedBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -180,20 +180,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.FederatedBlockApi(api_client) @@ -262,20 +262,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.FederatedBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -339,20 +339,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.FederatedBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam_federation/docs/FederatedRealmApi.md b/src/ipam_federation/docs/FederatedRealmApi.md index b9cb163..91fbbbf 100644 --- a/src/ipam_federation/docs/FederatedRealmApi.md +++ b/src/ipam_federation/docs/FederatedRealmApi.md @@ -30,20 +30,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.FederatedRealmApi(api_client) body = ipam_federation.FederatedRealm() # FederatedRealm | @@ -106,20 +106,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.FederatedRealmApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -180,20 +180,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.FederatedRealmApi(api_client) @@ -262,20 +262,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.FederatedRealmApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -339,20 +339,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.FederatedRealmApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam_federation/docs/NextAvailableFederatedBlockApi.md b/src/ipam_federation/docs/NextAvailableFederatedBlockApi.md index dff872a..3fb8dff 100644 --- a/src/ipam_federation/docs/NextAvailableFederatedBlockApi.md +++ b/src/ipam_federation/docs/NextAvailableFederatedBlockApi.md @@ -29,20 +29,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.NextAvailableFederatedBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -107,20 +107,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.NextAvailableFederatedBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -185,20 +185,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.NextAvailableFederatedBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -263,20 +263,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.NextAvailableFederatedBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam_federation/docs/NextAvailableOverlappingBlockApi.md b/src/ipam_federation/docs/NextAvailableOverlappingBlockApi.md index 0967caa..642ee38 100644 --- a/src/ipam_federation/docs/NextAvailableOverlappingBlockApi.md +++ b/src/ipam_federation/docs/NextAvailableOverlappingBlockApi.md @@ -26,20 +26,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.NextAvailableOverlappingBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam_federation/docs/NextAvailableReservedBlockApi.md b/src/ipam_federation/docs/NextAvailableReservedBlockApi.md index 21da65d..f7839bf 100644 --- a/src/ipam_federation/docs/NextAvailableReservedBlockApi.md +++ b/src/ipam_federation/docs/NextAvailableReservedBlockApi.md @@ -26,20 +26,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.NextAvailableReservedBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam_federation/docs/OverlappingBlockApi.md b/src/ipam_federation/docs/OverlappingBlockApi.md index 4850744..4c48ca3 100644 --- a/src/ipam_federation/docs/OverlappingBlockApi.md +++ b/src/ipam_federation/docs/OverlappingBlockApi.md @@ -30,20 +30,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.OverlappingBlockApi(api_client) body = ipam_federation.OverlappingBlock() # OverlappingBlock | @@ -106,20 +106,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.OverlappingBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -180,20 +180,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.OverlappingBlockApi(api_client) @@ -262,20 +262,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.OverlappingBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -339,20 +339,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.OverlappingBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/ipam_federation/docs/ReservedBlockApi.md b/src/ipam_federation/docs/ReservedBlockApi.md index cd04a05..53b2a54 100644 --- a/src/ipam_federation/docs/ReservedBlockApi.md +++ b/src/ipam_federation/docs/ReservedBlockApi.md @@ -30,20 +30,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.ReservedBlockApi(api_client) body = ipam_federation.ReservedBlock() # ReservedBlock | @@ -106,20 +106,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.ReservedBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -180,20 +180,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.ReservedBlockApi(api_client) @@ -262,20 +262,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.ReservedBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -339,20 +339,20 @@ import ipam_federation from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = ipam_federation.ReservedBlockApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/keys/README.md b/src/keys/README.md index 1aad09b..21d9fde 100644 --- a/src/keys/README.md +++ b/src/keys/README.md @@ -33,17 +33,17 @@ import keys from keys.rest import ApiException from pprint import pprint -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client diff --git a/src/keys/docs/GenerateTsigApi.md b/src/keys/docs/GenerateTsigApi.md index c7e462a..e0c9ef6 100644 --- a/src/keys/docs/GenerateTsigApi.md +++ b/src/keys/docs/GenerateTsigApi.md @@ -26,20 +26,20 @@ import keys from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = keys.GenerateTsigApi(api_client) diff --git a/src/keys/docs/KerberosApi.md b/src/keys/docs/KerberosApi.md index 851bcc8..2f6e980 100644 --- a/src/keys/docs/KerberosApi.md +++ b/src/keys/docs/KerberosApi.md @@ -29,20 +29,20 @@ import keys from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = keys.KerberosApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -103,20 +103,20 @@ import keys from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = keys.KerberosApi(api_client) @@ -185,20 +185,20 @@ import keys from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = keys.KerberosApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -262,20 +262,20 @@ import keys from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = keys.KerberosApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/keys/docs/TsigApi.md b/src/keys/docs/TsigApi.md index c3f13e1..48a83f6 100644 --- a/src/keys/docs/TsigApi.md +++ b/src/keys/docs/TsigApi.md @@ -30,20 +30,20 @@ import keys from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = keys.TsigApi(api_client) body = keys.TSIGKey() # TSIGKey | @@ -106,20 +106,20 @@ import keys from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = keys.TsigApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -180,20 +180,20 @@ import keys from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = keys.TsigApi(api_client) @@ -262,20 +262,20 @@ import keys from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = keys.TsigApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource @@ -339,20 +339,20 @@ import keys from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = keys.TsigApi(api_client) id = 'id_example' # str | An application specific resource identity of a resource diff --git a/src/keys/docs/UploadApi.md b/src/keys/docs/UploadApi.md index 84d83ce..a4082cd 100644 --- a/src/keys/docs/UploadApi.md +++ b/src/keys/docs/UploadApi.md @@ -26,20 +26,20 @@ import keys from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = keys.UploadApi(api_client) body = keys.UploadRequest() # UploadRequest | diff --git a/src/redirect/README.md b/src/redirect/README.md index eef1154..b5a69ba 100644 --- a/src/redirect/README.md +++ b/src/redirect/README.md @@ -33,10 +33,10 @@ import redirect from redirect.rest import ApiException from pprint import pprint -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) diff --git a/src/redirect/docs/CertificateApi.md b/src/redirect/docs/CertificateApi.md index 2ef431c..36ba312 100644 --- a/src/redirect/docs/CertificateApi.md +++ b/src/redirect/docs/CertificateApi.md @@ -25,15 +25,15 @@ import redirect from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = redirect.CertificateApi(api_client) diff --git a/src/redirect/docs/CustomRedirectsApi.md b/src/redirect/docs/CustomRedirectsApi.md index b7467d3..d183ba0 100644 --- a/src/redirect/docs/CustomRedirectsApi.md +++ b/src/redirect/docs/CustomRedirectsApi.md @@ -30,15 +30,15 @@ import redirect from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = redirect.CustomRedirectsApi(api_client) body = redirect.CustomRedirect() # CustomRedirect | The Custom Redirect object. @@ -103,15 +103,15 @@ import redirect from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = redirect.CustomRedirectsApi(api_client) body = redirect.CustomRedirectDeleteRequest() # CustomRedirectDeleteRequest | @@ -173,15 +173,15 @@ import redirect from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = redirect.CustomRedirectsApi(api_client) id = 56 # int | The Custom Redirect object identifier. @@ -243,15 +243,15 @@ import redirect from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = redirect.CustomRedirectsApi(api_client) @@ -314,15 +314,15 @@ import redirect from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = redirect.CustomRedirectsApi(api_client) id = 56 # int | The Custom Redirect object identifier. @@ -388,15 +388,15 @@ import redirect from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = redirect.CustomRedirectsApi(api_client) id = 56 # int | The Custom Redirect object identifier. diff --git a/src/redirect/docs/RedirectPageApi.md b/src/redirect/docs/RedirectPageApi.md index 312b169..b840931 100644 --- a/src/redirect/docs/RedirectPageApi.md +++ b/src/redirect/docs/RedirectPageApi.md @@ -26,15 +26,15 @@ import redirect from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = redirect.RedirectPageApi(api_client) @@ -97,15 +97,15 @@ import redirect from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = redirect.RedirectPageApi(api_client) body = redirect.UpdateRedirectPagePayload() # UpdateRedirectPagePayload | The Redirect Page object. diff --git a/src/universal_ddi_client/api_client.py b/src/universal_ddi_client/api_client.py index aae7e4d..90f5275 100644 --- a/src/universal_ddi_client/api_client.py +++ b/src/universal_ddi_client/api_client.py @@ -229,7 +229,7 @@ def param_serialize(self, # request url if _host is None: - url = self.configuration.csp_url + base_path + resource_path + url = self.configuration.portal_url + base_path + resource_path else: # use server/host defined in path or operation instead url = _host + resource_path @@ -550,7 +550,7 @@ def update_params_for_auth( :param headers: Header parameters dict to be updated. """ headers['Authorization'] = "Token {}".format( - self.configuration.api_key) + self.configuration.portal_key) def update_infoblox_headers( self, diff --git a/src/universal_ddi_client/api_client_test.py b/src/universal_ddi_client/api_client_test.py index e16b191..fae0f91 100644 --- a/src/universal_ddi_client/api_client_test.py +++ b/src/universal_ddi_client/api_client_test.py @@ -13,7 +13,7 @@ def tearDown(self) -> None: def test_default_client(self): self.assertIsNotNone(self.api_client.configuration) - self.assertEqual(self.api_client.configuration.csp_url, + self.assertEqual(self.api_client.configuration.portal_url, 'https://csp.infoblox.com') self.assertEqual(self.api_client.configuration.client_name, 'universal-ddi-python-client') diff --git a/src/universal_ddi_client/configuration.py b/src/universal_ddi_client/configuration.py index c61a114..3daf247 100644 --- a/src/universal_ddi_client/configuration.py +++ b/src/universal_ddi_client/configuration.py @@ -18,10 +18,10 @@ class Configuration: """This class contains various settings of the API client. - :param csp_url: URL for Infoblox Cloud Services Portal. + :param portal_url: URL for Infoblox Cloud Services Portal. Can also be configured using the `INFOBLOX_PORTAL_URL` environment variable. Default is `https://csp.infoblox.com`. - :param api_key: API Key for accessing the Infoblox API. + :param portal_key: API Key for accessing the Infoblox API. Can also be configured by using the `INFOBLOX_PORTAL_KEY` environment variable. You can configure an API key for your user account in the Infoblox Cloud Services Portal. @@ -36,35 +36,35 @@ class Configuration: API Key Authentication Example. conf = ipam.Configuration( - api_key='your_api_key' + portal_key='your_portal_key' ) The following header will be added to the HTTP request: - Authorization: Token your_api_key + Authorization: Token your_portal_key """ _default = None def __init__( self, - csp_url=None, - api_key=None, + portal_url=None, + portal_key=None, client_name=None, ssl_ca_cert=None, ) -> None: """Constructor """ - self.csp_url = os.getenv('INFOBLOX_PORTAL_URL', "https://csp.infoblox.com") if csp_url is None else csp_url + self.portal_url = portal_url or os.getenv("INFOBLOX_PORTAL_URL") or os.getenv("BLOXONE_CSP_URL") or "https://csp.infoblox.com" """Default CSP url """ self.temp_folder_path = None """Temp file folder for downloading files """ # Authentication Settings - self.api_key = os.getenv('INFOBLOX_PORTAL_KEY', "") - if api_key: - self.api_key = api_key + self.portal_key = os.getenv('INFOBLOX_PORTAL_KEY') or os.getenv('BLOXONE_API_KEY') or "" + if portal_key: + self.portal_key = portal_key """API Key """ self.client_name = "universal-ddi-python-client" if client_name is None else client_name @@ -289,36 +289,36 @@ def to_debug_report(self): format(env=sys.platform, pyversion=sys.version) @property - def csp_url(self): + def portal_url(self): """Get the CSP URL. :return: The CSP URL. """ - return self.__csp_url + return self.__portal_url - @csp_url.setter - def csp_url(self, value): + @portal_url.setter + def portal_url(self, value): """Set the CSP URL. :param value: The CSP URL. """ - self.__csp_url = value + self.__portal_url = value @property - def api_key(self): + def portal_key(self): """Get the API key. :return: The API key. """ - return self.__api_key + return self.__portal_key - @api_key.setter - def api_key(self, value): + @portal_key.setter + def portal_key(self, value): """Set the API key. :param value: The API key. """ - self.__api_key = value + self.__portal_key = value @property def client_name(self): diff --git a/src/upgrade_policy/README.md b/src/upgrade_policy/README.md index 42bcb85..2752c58 100644 --- a/src/upgrade_policy/README.md +++ b/src/upgrade_policy/README.md @@ -33,17 +33,17 @@ import upgrade_policy from upgrade_policy.rest import ApiException from pprint import pprint -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client diff --git a/src/upgrade_policy/docs/UpgradePolicyV2Api.md b/src/upgrade_policy/docs/UpgradePolicyV2Api.md index ddbab5b..50cc174 100644 --- a/src/upgrade_policy/docs/UpgradePolicyV2Api.md +++ b/src/upgrade_policy/docs/UpgradePolicyV2Api.md @@ -30,20 +30,20 @@ import upgrade_policy from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = upgrade_policy.UpgradePolicyV2Api(api_client) body = upgrade_policy.ApplyConfigNowRequest() # ApplyConfigNowRequest | @@ -104,20 +104,20 @@ import upgrade_policy from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = upgrade_policy.UpgradePolicyV2Api(api_client) body = upgrade_policy.BatchMaintenanceWindowRequest() # BatchMaintenanceWindowRequest | @@ -178,20 +178,20 @@ import upgrade_policy from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = upgrade_policy.UpgradePolicyV2Api(api_client) body = upgrade_policy.CreateMaintenanceWindowRequest() # CreateMaintenanceWindowRequest | @@ -252,20 +252,20 @@ import upgrade_policy from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = upgrade_policy.UpgradePolicyV2Api(api_client) id = 'id_example' # str | uuid of a maintenance window record @@ -326,20 +326,20 @@ import upgrade_policy from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = upgrade_policy.UpgradePolicyV2Api(api_client) id = 'id_example' # str | uuid of a maintenance window record @@ -400,20 +400,20 @@ import upgrade_policy from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = upgrade_policy.UpgradePolicyV2Api(api_client) @@ -473,20 +473,20 @@ import upgrade_policy from universal_ddi_client.api_client import ApiClient from universal_ddi_client.configuration import Configuration -# Defining the CSP URL is optional and defaults to "https://csp.infoblox.com" +# Defining the Portal URL is optional and defaults to "https://csp.infoblox.com" # See configuration.py for a list of all supported configuration parameters. configuration = Configuration( - csp_url = os.getenv('INFOBLOX_PORTAL_URL'), + portal_url = os.getenv('INFOBLOX_PORTAL_URL'), ) # The client must configure the authentication and authorization parameters # in accordance with the API server security policy. -# Configure API key authorization: ApiKeyAuth -configuration.api_key = os.getenv("INFOBLOX_PORTAL_KEY") +# Configure Portal key authorization: ApiKeyAuth +configuration.portal_key = os.getenv("INFOBLOX_PORTAL_KEY") # Enter a context with an instance of the API client -with ApiClient(config) as api_client: +with ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = upgrade_policy.UpgradePolicyV2Api(api_client) id = 'id_example' # str | uuid of a maintenance window record