docs/AnsibleGitRemoteResponse.md in pulp_ansible_client-0.21.8 vs docs/AnsibleGitRemoteResponse.md in pulp_ansible_client-0.21.9

- old
+ new

@@ -2,55 +2,55 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**pulp_href** | **String** | | [optional] [readonly] -**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional] -**pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly] -**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly] +**hidden_fields** | [**Array<AnsibleCollectionRemoteResponseHiddenFields>**](AnsibleCollectionRemoteResponseHiddenFields.md) | List of hidden (write only) fields | [optional] [readonly] **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional] -**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] -**url** | **String** | The URL of an external content source. | -**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional] -**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] -**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional] -**total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional] +**name** | **String** | A unique name for this remote. | **connect_timeout** | **Float** | aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional] -**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional] -**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional] **pulp_labels** | **Hash<String, String>** | | [optional] **sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional] -**name** | **String** | A unique name for this remote. | -**hidden_fields** | [**Array<AnsibleCollectionRemoteResponseHiddenFields>**](AnsibleCollectionRemoteResponseHiddenFields.md) | List of hidden (write only) fields | [optional] [readonly] +**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] +**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional] +**url** | **String** | The URL of an external content source. | +**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional] +**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] +**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional] **sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional] +**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional] +**total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional] +**pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly] +**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly] +**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional] +**pulp_href** | **String** | | [optional] [readonly] **metadata_only** | **Boolean** | If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL. | [optional] **git_ref** | **String** | A git ref. e.g.: branch, tag, or commit sha. | [optional] ## Code Sample ```ruby require 'PulpAnsibleClient' -instance = PulpAnsibleClient::AnsibleGitRemoteResponse.new(pulp_href: null, - tls_validation: null, - pulp_last_updated: null, - pulp_created: null, +instance = PulpAnsibleClient::AnsibleGitRemoteResponse.new(hidden_fields: null, client_cert: null, - rate_limit: null, - url: null, - headers: null, - download_concurrency: null, - ca_cert: null, - total_timeout: null, + name: null, connect_timeout: null, - max_retries: null, - proxy_url: null, pulp_labels: null, sock_read_timeout: null, - name: null, - hidden_fields: null, + download_concurrency: null, + headers: null, + url: null, + ca_cert: null, + rate_limit: null, + max_retries: null, sock_connect_timeout: null, + proxy_url: null, + total_timeout: null, + pulp_last_updated: null, + pulp_created: null, + tls_validation: null, + pulp_href: null, metadata_only: null, git_ref: null) ```