Class: CloudsmithApi::RepositoryCreateRequest
- Inherits:
-
Object
- Object
- CloudsmithApi::RepositoryCreateRequest
- Defined in:
- lib/cloudsmith-api/models/repository_create_request.rb
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#content_kind ⇒ Object
The repository content kind determines whether this repository contains packages, or provides a distribution of packages from other repositories.
-
#contextual_auth_realm ⇒ Object
If checked, missing credentials for this repository where basic authentication is required shall present an enriched value in the ‘WWW-Authenticate’ header containing the namespace and repository.
-
#copy_own ⇒ Object
If checked, users can copy any of their own packages that they have uploaded, assuming that they still have write privilege for the repository.
-
#copy_packages ⇒ Object
This defines the minimum level of privilege required for a user to copy packages.
-
#default_privilege ⇒ Object
This defines the default level of privilege that all of your organization members have for this repository.
-
#delete_own ⇒ Object
If checked, users can delete any of their own packages that they have uploaded, assuming that they still have write privilege for the repository.
-
#delete_packages ⇒ Object
This defines the minimum level of privilege required for a user to delete packages.
-
#description ⇒ Object
A description of the repository’s purpose/contents.
-
#distributes ⇒ Object
The repositories distributed through this repo.
-
#docker_refresh_tokens_enabled ⇒ Object
If checked, refresh tokens will be issued in addition to access tokens for Docker authentication.
-
#enforce_eula ⇒ Object
If checked, downloads will explicitly require acceptance of an EULA.
-
#index_files ⇒ Object
If checked, files contained in packages will be indexed, which increase the synchronisation time required for packages.
-
#manage_entitlements_privilege ⇒ Object
This defines the minimum level of privilege required for a user to manage entitlement tokens with private repositories.
-
#move_own ⇒ Object
If checked, users can move any of their own packages that they have uploaded, assuming that they still have write privilege for the repository.
-
#move_packages ⇒ Object
This defines the minimum level of privilege required for a user to move packages.
-
#name ⇒ Object
A descriptive name for the repository.
-
#open_source_license ⇒ Object
The SPDX identifier of the open source license.
-
#open_source_project_url ⇒ Object
The URL to the Open-Source project, used for validating that the project meets the requirements for Open-Source.
-
#proxy_npmjs ⇒ Object
If checked, Npm packages that are not in the repository when requested by clients will automatically be proxied from the public npmjs.org registry.
-
#proxy_pypi ⇒ Object
If checked, Python packages that are not in the repository when requested by clients will automatically be proxied from the public pypi.python.org registry.
-
#raw_package_index_enabled ⇒ Object
If checked, HTML and JSON indexes will be generated that list all available raw packages in the repository.
-
#raw_package_index_signatures_enabled ⇒ Object
If checked, the HTML and JSON indexes will display raw package GPG signatures alongside the index packages.
-
#replace_packages ⇒ Object
This defines the minimum level of privilege required for a user to republish packages.
-
#replace_packages_by_default ⇒ Object
If checked, uploaded packages will overwrite/replace any others with the same attributes (e.g. same version) by default.
-
#repository_type_str ⇒ Object
The repository type changes how it is accessed and billed.
-
#resync_own ⇒ Object
If checked, users can resync any of their own packages that they have uploaded, assuming that they still have write privilege for the repository.
-
#resync_packages ⇒ Object
This defines the minimum level of privilege required for a user to resync packages.
-
#scan_own ⇒ Object
If checked, users can scan any of their own packages that they have uploaded, assuming that they still have write privilege for the repository.
-
#scan_packages ⇒ Object
This defines the minimum level of privilege required for a user to scan packages.
-
#show_setup_all ⇒ Object
If checked, the Set Me Up help for all formats will always be shown, even if you don’t have packages of that type uploaded.
-
#slug ⇒ Object
The slug identifies the repository in URIs.
-
#storage_region ⇒ Object
The Cloudsmith region in which package files are stored.
-
#strict_npm_validation ⇒ Object
If checked, npm packages will be validated strictly to ensure the package matches specifcation.
-
#tag_pre_releases_as_latest ⇒ Object
If checked, packages pushed with a pre-release component on that version will be marked with the ‘latest’ tag.
-
#use_debian_labels ⇒ Object
If checked, a ‘Label’ field will be present in Debian-based repositories.
-
#use_default_cargo_upstream ⇒ Object
If checked, dependencies of uploaded Cargo crates which do not set an explicit value for "registry" will be assumed to be available from crates.io.
-
#use_entitlements_privilege ⇒ Object
This defines the minimum level of privilege required for a user to see/use entitlement tokens with private repositories.
-
#use_noarch_packages ⇒ Object
If checked, noarch packages (if supported) are enabled in installations/configurations.
-
#use_source_packages ⇒ Object
If checked, source packages (if supported) are enabled in installations/configurations.
-
#use_vulnerability_scanning ⇒ Object
If checked, vulnerability scanning will be enabled for all supported packages within this repository.
-
#user_entitlements_enabled ⇒ Object
If checked, users can use and manage their own user-specific entitlement token for the repository (if private).
-
#view_statistics ⇒ Object
This defines the minimum level of privilege required for a user to view repository statistics, to include entitlement-based usage, if applicable.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ RepositoryCreateRequest
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Constructor Details
#initialize(attributes = {}) ⇒ RepositoryCreateRequest
Initializes the object
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 263 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } if attributes.has_key?(:'content_kind') self.content_kind = attributes[:'content_kind'] else self.content_kind = 'Standard' end if attributes.has_key?(:'contextual_auth_realm') self.contextual_auth_realm = attributes[:'contextual_auth_realm'] end if attributes.has_key?(:'copy_own') self.copy_own = attributes[:'copy_own'] end if attributes.has_key?(:'copy_packages') self.copy_packages = attributes[:'copy_packages'] else self.copy_packages = 'Read' end if attributes.has_key?(:'default_privilege') self.default_privilege = attributes[:'default_privilege'] else self.default_privilege = 'None' end if attributes.has_key?(:'delete_own') self.delete_own = attributes[:'delete_own'] end if attributes.has_key?(:'delete_packages') self.delete_packages = attributes[:'delete_packages'] else self.delete_packages = 'Admin' end if attributes.has_key?(:'description') self.description = attributes[:'description'] end if attributes.has_key?(:'distributes') if (value = attributes[:'distributes']).is_a?(Array) self.distributes = value end end if attributes.has_key?(:'docker_refresh_tokens_enabled') self.docker_refresh_tokens_enabled = attributes[:'docker_refresh_tokens_enabled'] end if attributes.has_key?(:'enforce_eula') self.enforce_eula = attributes[:'enforce_eula'] end if attributes.has_key?(:'index_files') self.index_files = attributes[:'index_files'] end if attributes.has_key?(:'manage_entitlements_privilege') self.manage_entitlements_privilege = attributes[:'manage_entitlements_privilege'] else self.manage_entitlements_privilege = 'Admin' end if attributes.has_key?(:'move_own') self.move_own = attributes[:'move_own'] end if attributes.has_key?(:'move_packages') self.move_packages = attributes[:'move_packages'] else self.move_packages = 'Admin' end if attributes.has_key?(:'name') self.name = attributes[:'name'] end if attributes.has_key?(:'open_source_license') self.open_source_license = attributes[:'open_source_license'] end if attributes.has_key?(:'open_source_project_url') self.open_source_project_url = attributes[:'open_source_project_url'] end if attributes.has_key?(:'proxy_npmjs') self.proxy_npmjs = attributes[:'proxy_npmjs'] end if attributes.has_key?(:'proxy_pypi') self.proxy_pypi = attributes[:'proxy_pypi'] end if attributes.has_key?(:'raw_package_index_enabled') self.raw_package_index_enabled = attributes[:'raw_package_index_enabled'] end if attributes.has_key?(:'raw_package_index_signatures_enabled') self.raw_package_index_signatures_enabled = attributes[:'raw_package_index_signatures_enabled'] end if attributes.has_key?(:'replace_packages') self.replace_packages = attributes[:'replace_packages'] else self.replace_packages = 'Write' end if attributes.has_key?(:'replace_packages_by_default') self.replace_packages_by_default = attributes[:'replace_packages_by_default'] end if attributes.has_key?(:'repository_type_str') self.repository_type_str = attributes[:'repository_type_str'] else self.repository_type_str = 'Public' end if attributes.has_key?(:'resync_own') self.resync_own = attributes[:'resync_own'] end if attributes.has_key?(:'resync_packages') self.resync_packages = attributes[:'resync_packages'] else self.resync_packages = 'Admin' end if attributes.has_key?(:'scan_own') self.scan_own = attributes[:'scan_own'] end if attributes.has_key?(:'scan_packages') self.scan_packages = attributes[:'scan_packages'] else self.scan_packages = 'Read' end if attributes.has_key?(:'show_setup_all') self.show_setup_all = attributes[:'show_setup_all'] end if attributes.has_key?(:'slug') self.slug = attributes[:'slug'] end if attributes.has_key?(:'storage_region') self.storage_region = attributes[:'storage_region'] else self.storage_region = 'default' end if attributes.has_key?(:'strict_npm_validation') self.strict_npm_validation = attributes[:'strict_npm_validation'] end if attributes.has_key?(:'tag_pre_releases_as_latest') self.tag_pre_releases_as_latest = attributes[:'tag_pre_releases_as_latest'] end if attributes.has_key?(:'use_debian_labels') self.use_debian_labels = attributes[:'use_debian_labels'] end if attributes.has_key?(:'use_default_cargo_upstream') self.use_default_cargo_upstream = attributes[:'use_default_cargo_upstream'] end if attributes.has_key?(:'use_entitlements_privilege') self.use_entitlements_privilege = attributes[:'use_entitlements_privilege'] else self.use_entitlements_privilege = 'Read' end if attributes.has_key?(:'use_noarch_packages') self.use_noarch_packages = attributes[:'use_noarch_packages'] end if attributes.has_key?(:'use_source_packages') self.use_source_packages = attributes[:'use_source_packages'] end if attributes.has_key?(:'use_vulnerability_scanning') self.use_vulnerability_scanning = attributes[:'use_vulnerability_scanning'] end if attributes.has_key?(:'user_entitlements_enabled') self.user_entitlements_enabled = attributes[:'user_entitlements_enabled'] end if attributes.has_key?(:'view_statistics') self.view_statistics = attributes[:'view_statistics'] else self.view_statistics = 'Read' end end |
Instance Attribute Details
#content_kind ⇒ Object
The repository content kind determines whether this repository contains packages, or provides a distribution of packages from other repositories. You can only select the content kind at repository creation time.
18 19 20 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 18 def content_kind @content_kind end |
#contextual_auth_realm ⇒ Object
If checked, missing credentials for this repository where basic authentication is required shall present an enriched value in the ‘WWW-Authenticate’ header containing the namespace and repository. This can be useful for tooling such as SBT where the authentication realm is used to distinguish and disambiguate credentials.
21 22 23 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 21 def contextual_auth_realm @contextual_auth_realm end |
#copy_own ⇒ Object
If checked, users can copy any of their own packages that they have uploaded, assuming that they still have write privilege for the repository. This takes precedence over privileges configured in the ‘Access Controls’ section of the repository, and any inherited from the org.
24 25 26 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 24 def copy_own @copy_own end |
#copy_packages ⇒ Object
This defines the minimum level of privilege required for a user to copy packages. Unless the package was uploaded by that user, in which the permission may be overridden by the user-specific copy setting.
27 28 29 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 27 def copy_packages @copy_packages end |
#default_privilege ⇒ Object
This defines the default level of privilege that all of your organization members have for this repository. This does not include collaborators, but applies to any member of the org regardless of their own membership role (i.e. it applies to owners, managers and members). Be careful if setting this to admin, because any member will be able to change settings.
30 31 32 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 30 def default_privilege @default_privilege end |
#delete_own ⇒ Object
If checked, users can delete any of their own packages that they have uploaded, assuming that they still have write privilege for the repository. This takes precedence over privileges configured in the ‘Access Controls’ section of the repository, and any inherited from the org.
33 34 35 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 33 def delete_own @delete_own end |
#delete_packages ⇒ Object
This defines the minimum level of privilege required for a user to delete packages. Unless the package was uploaded by that user, in which the permission may be overridden by the user-specific delete setting.
36 37 38 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 36 def delete_packages @delete_packages end |
#description ⇒ Object
A description of the repository’s purpose/contents.
39 40 41 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 39 def description @description end |
#distributes ⇒ Object
The repositories distributed through this repo. Adding repos here is only valid if the content_kind is DISTRIBUTION.
42 43 44 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 42 def distributes @distributes end |
#docker_refresh_tokens_enabled ⇒ Object
If checked, refresh tokens will be issued in addition to access tokens for Docker authentication. This allows unlimited extension of the lifetime of access tokens.
45 46 47 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 45 def docker_refresh_tokens_enabled @docker_refresh_tokens_enabled end |
#enforce_eula ⇒ Object
If checked, downloads will explicitly require acceptance of an EULA.
48 49 50 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 48 def enforce_eula @enforce_eula end |
#index_files ⇒ Object
If checked, files contained in packages will be indexed, which increase the synchronisation time required for packages. Note that it is recommended you keep this enabled unless the synchronisation time is significantly impacted.
51 52 53 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 51 def index_files @index_files end |
#manage_entitlements_privilege ⇒ Object
This defines the minimum level of privilege required for a user to manage entitlement tokens with private repositories. Management is the ability to create, alter, enable, disable or delete all tokens without a repository.
54 55 56 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 54 def manage_entitlements_privilege @manage_entitlements_privilege end |
#move_own ⇒ Object
If checked, users can move any of their own packages that they have uploaded, assuming that they still have write privilege for the repository. This takes precedence over privileges configured in the ‘Access Controls’ section of the repository, and any inherited from the org.
57 58 59 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 57 def move_own @move_own end |
#move_packages ⇒ Object
This defines the minimum level of privilege required for a user to move packages. Unless the package was uploaded by that user, in which the permission may be overridden by the user-specific move setting.
60 61 62 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 60 def move_packages @move_packages end |
#name ⇒ Object
A descriptive name for the repository.
63 64 65 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 63 def name @name end |
#open_source_license ⇒ Object
The SPDX identifier of the open source license.
66 67 68 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 66 def open_source_license @open_source_license end |
#open_source_project_url ⇒ Object
The URL to the Open-Source project, used for validating that the project meets the requirements for Open-Source.
69 70 71 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 69 def open_source_project_url @open_source_project_url end |
#proxy_npmjs ⇒ Object
If checked, Npm packages that are not in the repository when requested by clients will automatically be proxied from the public npmjs.org registry. If there is at least one version for a package, others will not be proxied.
72 73 74 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 72 def proxy_npmjs @proxy_npmjs end |
#proxy_pypi ⇒ Object
If checked, Python packages that are not in the repository when requested by clients will automatically be proxied from the public pypi.python.org registry. If there is at least one version for a package, others will not be proxied.
75 76 77 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 75 def proxy_pypi @proxy_pypi end |
#raw_package_index_enabled ⇒ Object
If checked, HTML and JSON indexes will be generated that list all available raw packages in the repository.
78 79 80 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 78 def raw_package_index_enabled @raw_package_index_enabled end |
#raw_package_index_signatures_enabled ⇒ Object
If checked, the HTML and JSON indexes will display raw package GPG signatures alongside the index packages.
81 82 83 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 81 def raw_package_index_signatures_enabled @raw_package_index_signatures_enabled end |
#replace_packages ⇒ Object
This defines the minimum level of privilege required for a user to republish packages. Unless the package was uploaded by that user, in which the permission may be overridden by the user-specific republish setting. Please note that the user still requires the privilege to delete packages that will be replaced by the new package; otherwise the republish will fail.
84 85 86 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 84 def replace_packages @replace_packages end |
#replace_packages_by_default ⇒ Object
If checked, uploaded packages will overwrite/replace any others with the same attributes (e.g. same version) by default. This only applies if the user has the required privilege for the republishing AND has the required privilege to delete existing packages that they don’t own.
87 88 89 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 87 def replace_packages_by_default @replace_packages_by_default end |
#repository_type_str ⇒ Object
The repository type changes how it is accessed and billed. Private repositories are visible only to you or authorized delegates. Public repositories are visible to all Cloudsmith users.
90 91 92 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 90 def repository_type_str @repository_type_str end |
#resync_own ⇒ Object
If checked, users can resync any of their own packages that they have uploaded, assuming that they still have write privilege for the repository. This takes precedence over privileges configured in the ‘Access Controls’ section of the repository, and any inherited from the org.
93 94 95 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 93 def resync_own @resync_own end |
#resync_packages ⇒ Object
This defines the minimum level of privilege required for a user to resync packages. Unless the package was uploaded by that user, in which the permission may be overridden by the user-specific resync setting.
96 97 98 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 96 def resync_packages @resync_packages end |
#scan_own ⇒ Object
If checked, users can scan any of their own packages that they have uploaded, assuming that they still have write privilege for the repository. This takes precedence over privileges configured in the ‘Access Controls’ section of the repository, and any inherited from the org.
99 100 101 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 99 def scan_own @scan_own end |
#scan_packages ⇒ Object
This defines the minimum level of privilege required for a user to scan packages. Unless the package was uploaded by that user, in which the permission may be overridden by the user-specific scan setting.
102 103 104 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 102 def scan_packages @scan_packages end |
#show_setup_all ⇒ Object
If checked, the Set Me Up help for all formats will always be shown, even if you don’t have packages of that type uploaded. Otherwise, help will only be shown for packages that are in the repository. For example, if you have uploaded only NuGet packages, then the Set Me Up help for NuGet packages will be shown only.
105 106 107 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 105 def show_setup_all @show_setup_all end |
#slug ⇒ Object
The slug identifies the repository in URIs.
108 109 110 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 108 def slug @slug end |
#storage_region ⇒ Object
The Cloudsmith region in which package files are stored.
111 112 113 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 111 def storage_region @storage_region end |
#strict_npm_validation ⇒ Object
If checked, npm packages will be validated strictly to ensure the package matches specifcation. You can turn this on if you want to guarantee that the packages will work with npm-cli and other tools correctly.
114 115 116 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 114 def strict_npm_validation @strict_npm_validation end |
#tag_pre_releases_as_latest ⇒ Object
If checked, packages pushed with a pre-release component on that version will be marked with the ‘latest’ tag. Note that if unchecked, a repository containing ONLY pre-release versions, will have no version marked latest which may cause incompatibility with native tools
117 118 119 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 117 def tag_pre_releases_as_latest @tag_pre_releases_as_latest end |
#use_debian_labels ⇒ Object
If checked, a ‘Label’ field will be present in Debian-based repositories. It will contain a string that identifies the entitlement token used to authenticate the repository, in the form of ‘source=t-<identifier>’; or ‘source=none’ if no token was used. You can use this to help with pinning.
120 121 122 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 120 def use_debian_labels @use_debian_labels end |
#use_default_cargo_upstream ⇒ Object
If checked, dependencies of uploaded Cargo crates which do not set an explicit value for "registry" will be assumed to be available from crates.io. If unchecked, dependencies with unspecified "registry" values will be assumed to be available in the registry being uploaded to. Uncheck this if you want to ensure that dependencies are only ever installed from Cloudsmith unless explicitly specified as belong to another registry.
123 124 125 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 123 def use_default_cargo_upstream @use_default_cargo_upstream end |
#use_entitlements_privilege ⇒ Object
This defines the minimum level of privilege required for a user to see/use entitlement tokens with private repositories. If a user does not have the permission, they will only be able to download packages using other credentials, such as email/password via basic authentication. Use this if you want to force users to only use their user-based token, which is tied to their access (if removed, they can’t use it).
126 127 128 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 126 def use_entitlements_privilege @use_entitlements_privilege end |
#use_noarch_packages ⇒ Object
If checked, noarch packages (if supported) are enabled in installations/configurations. A noarch package is one that is not tied to specific system architecture (like i686).
129 130 131 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 129 def use_noarch_packages @use_noarch_packages end |
#use_source_packages ⇒ Object
If checked, source packages (if supported) are enabled in installations/configurations. A source package is one that contains source code rather than built binaries.
132 133 134 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 132 def use_source_packages @use_source_packages end |
#use_vulnerability_scanning ⇒ Object
If checked, vulnerability scanning will be enabled for all supported packages within this repository.
135 136 137 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 135 def use_vulnerability_scanning @use_vulnerability_scanning end |
#user_entitlements_enabled ⇒ Object
If checked, users can use and manage their own user-specific entitlement token for the repository (if private). Otherwise, user-specific entitlements are disabled for all users.
138 139 140 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 138 def user_entitlements_enabled @user_entitlements_enabled end |
#view_statistics ⇒ Object
This defines the minimum level of privilege required for a user to view repository statistics, to include entitlement-based usage, if applicable. If a user does not have the permission, they won’t be able to view any statistics, either via the UI, API or CLI.
141 142 143 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 141 def view_statistics @view_statistics end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 166 def self.attribute_map { :'content_kind' => :'content_kind', :'contextual_auth_realm' => :'contextual_auth_realm', :'copy_own' => :'copy_own', :'copy_packages' => :'copy_packages', :'default_privilege' => :'default_privilege', :'delete_own' => :'delete_own', :'delete_packages' => :'delete_packages', :'description' => :'description', :'distributes' => :'distributes', :'docker_refresh_tokens_enabled' => :'docker_refresh_tokens_enabled', :'enforce_eula' => :'enforce_eula', :'index_files' => :'index_files', :'manage_entitlements_privilege' => :'manage_entitlements_privilege', :'move_own' => :'move_own', :'move_packages' => :'move_packages', :'name' => :'name', :'open_source_license' => :'open_source_license', :'open_source_project_url' => :'open_source_project_url', :'proxy_npmjs' => :'proxy_npmjs', :'proxy_pypi' => :'proxy_pypi', :'raw_package_index_enabled' => :'raw_package_index_enabled', :'raw_package_index_signatures_enabled' => :'raw_package_index_signatures_enabled', :'replace_packages' => :'replace_packages', :'replace_packages_by_default' => :'replace_packages_by_default', :'repository_type_str' => :'repository_type_str', :'resync_own' => :'resync_own', :'resync_packages' => :'resync_packages', :'scan_own' => :'scan_own', :'scan_packages' => :'scan_packages', :'show_setup_all' => :'show_setup_all', :'slug' => :'slug', :'storage_region' => :'storage_region', :'strict_npm_validation' => :'strict_npm_validation', :'tag_pre_releases_as_latest' => :'tag_pre_releases_as_latest', :'use_debian_labels' => :'use_debian_labels', :'use_default_cargo_upstream' => :'use_default_cargo_upstream', :'use_entitlements_privilege' => :'use_entitlements_privilege', :'use_noarch_packages' => :'use_noarch_packages', :'use_source_packages' => :'use_source_packages', :'use_vulnerability_scanning' => :'use_vulnerability_scanning', :'user_entitlements_enabled' => :'user_entitlements_enabled', :'view_statistics' => :'view_statistics' } end |
.swagger_types ⇒ Object
Attribute type mapping.
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 214 def self.swagger_types { :'content_kind' => :'String', :'contextual_auth_realm' => :'BOOLEAN', :'copy_own' => :'BOOLEAN', :'copy_packages' => :'String', :'default_privilege' => :'String', :'delete_own' => :'BOOLEAN', :'delete_packages' => :'String', :'description' => :'String', :'distributes' => :'Array<String>', :'docker_refresh_tokens_enabled' => :'BOOLEAN', :'enforce_eula' => :'BOOLEAN', :'index_files' => :'BOOLEAN', :'manage_entitlements_privilege' => :'String', :'move_own' => :'BOOLEAN', :'move_packages' => :'String', :'name' => :'String', :'open_source_license' => :'String', :'open_source_project_url' => :'String', :'proxy_npmjs' => :'BOOLEAN', :'proxy_pypi' => :'BOOLEAN', :'raw_package_index_enabled' => :'BOOLEAN', :'raw_package_index_signatures_enabled' => :'BOOLEAN', :'replace_packages' => :'String', :'replace_packages_by_default' => :'BOOLEAN', :'repository_type_str' => :'String', :'resync_own' => :'BOOLEAN', :'resync_packages' => :'String', :'scan_own' => :'BOOLEAN', :'scan_packages' => :'String', :'show_setup_all' => :'BOOLEAN', :'slug' => :'String', :'storage_region' => :'String', :'strict_npm_validation' => :'BOOLEAN', :'tag_pre_releases_as_latest' => :'BOOLEAN', :'use_debian_labels' => :'BOOLEAN', :'use_default_cargo_upstream' => :'BOOLEAN', :'use_entitlements_privilege' => :'String', :'use_noarch_packages' => :'BOOLEAN', :'use_source_packages' => :'BOOLEAN', :'use_vulnerability_scanning' => :'BOOLEAN', :'user_entitlements_enabled' => :'BOOLEAN', :'view_statistics' => :'String' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 630 def ==(o) return true if self.equal?(o) self.class == o.class && content_kind == o.content_kind && contextual_auth_realm == o.contextual_auth_realm && copy_own == o.copy_own && copy_packages == o.copy_packages && default_privilege == o.default_privilege && delete_own == o.delete_own && delete_packages == o.delete_packages && description == o.description && distributes == o.distributes && docker_refresh_tokens_enabled == o.docker_refresh_tokens_enabled && enforce_eula == o.enforce_eula && index_files == o.index_files && manage_entitlements_privilege == o.manage_entitlements_privilege && move_own == o.move_own && move_packages == o.move_packages && name == o.name && open_source_license == o.open_source_license && open_source_project_url == o.open_source_project_url && proxy_npmjs == o.proxy_npmjs && proxy_pypi == o.proxy_pypi && raw_package_index_enabled == o.raw_package_index_enabled && raw_package_index_signatures_enabled == o.raw_package_index_signatures_enabled && replace_packages == o.replace_packages && replace_packages_by_default == o.replace_packages_by_default && repository_type_str == o.repository_type_str && resync_own == o.resync_own && resync_packages == o.resync_packages && scan_own == o.scan_own && scan_packages == o.scan_packages && show_setup_all == o.show_setup_all && slug == o.slug && storage_region == o.storage_region && strict_npm_validation == o.strict_npm_validation && tag_pre_releases_as_latest == o.tag_pre_releases_as_latest && use_debian_labels == o.use_debian_labels && use_default_cargo_upstream == o.use_default_cargo_upstream && use_entitlements_privilege == o.use_entitlements_privilege && use_noarch_packages == o.use_noarch_packages && use_source_packages == o.use_source_packages && use_vulnerability_scanning == o.use_vulnerability_scanning && user_entitlements_enabled == o.user_entitlements_enabled && view_statistics == o.view_statistics end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 713 def _deserialize(type, value) case type.to_sym when :DateTime DateTime.parse(value) when :Date Date.parse(value) when :String value.to_s when :Integer value.to_i when :Float value.to_f when :BOOLEAN if value.to_s =~ /\A(true|t|yes|y|1)\z/i true else false end when :Object # generic object (usually a Hash), return directly value when /\AArray<(?<inner_type>.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/ k_type = Regexp.last_match[:k_type] v_type = Regexp.last_match[:v_type] {}.tap do |hash| value.each do |k, v| hash[_deserialize(k_type, k)] = _deserialize(v_type, v) end end else # model temp_model = CloudsmithApi.const_get(type).new temp_model.build_from_hash(value) end end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
779 780 781 782 783 784 785 786 787 788 789 790 791 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 779 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 692 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]])) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(o) ⇒ Boolean
679 680 681 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 679 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
685 686 687 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 685 def hash [content_kind, contextual_auth_realm, copy_own, copy_packages, default_privilege, delete_own, delete_packages, description, distributes, docker_refresh_tokens_enabled, enforce_eula, index_files, manage_entitlements_privilege, move_own, move_packages, name, open_source_license, open_source_project_url, proxy_npmjs, proxy_pypi, raw_package_index_enabled, raw_package_index_signatures_enabled, replace_packages, replace_packages_by_default, repository_type_str, resync_own, resync_packages, scan_own, scan_packages, show_setup_all, slug, storage_region, strict_npm_validation, tag_pre_releases_as_latest, use_debian_labels, use_default_cargo_upstream, use_entitlements_privilege, use_noarch_packages, use_source_packages, use_vulnerability_scanning, user_entitlements_enabled, view_statistics].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
468 469 470 471 472 473 474 475 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 468 def list_invalid_properties invalid_properties = Array.new if @name.nil? invalid_properties.push('invalid value for "name", name cannot be nil.') end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
759 760 761 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 759 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
765 766 767 768 769 770 771 772 773 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 765 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) next if value.nil? hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
753 754 755 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 753 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 |
# File 'lib/cloudsmith-api/models/repository_create_request.rb', line 479 def valid? content_kind_validator = EnumAttributeValidator.new('String', ['Standard', 'Distribution', 'Upstream']) return false unless content_kind_validator.valid?(@content_kind) copy_packages_validator = EnumAttributeValidator.new('String', ['Admin', 'Write', 'Read']) return false unless copy_packages_validator.valid?(@copy_packages) default_privilege_validator = EnumAttributeValidator.new('String', ['Admin', 'Write', 'Read', 'None']) return false unless default_privilege_validator.valid?(@default_privilege) delete_packages_validator = EnumAttributeValidator.new('String', ['Admin', 'Write']) return false unless delete_packages_validator.valid?(@delete_packages) manage_entitlements_privilege_validator = EnumAttributeValidator.new('String', ['Admin', 'Write', 'Read']) return false unless manage_entitlements_privilege_validator.valid?(@manage_entitlements_privilege) move_packages_validator = EnumAttributeValidator.new('String', ['Admin', 'Write', 'Read']) return false unless move_packages_validator.valid?(@move_packages) return false if @name.nil? replace_packages_validator = EnumAttributeValidator.new('String', ['Admin', 'Write']) return false unless replace_packages_validator.valid?(@replace_packages) repository_type_str_validator = EnumAttributeValidator.new('String', ['Public', 'Private', 'Open-Source']) return false unless repository_type_str_validator.valid?(@repository_type_str) resync_packages_validator = EnumAttributeValidator.new('String', ['Admin', 'Write']) return false unless resync_packages_validator.valid?(@resync_packages) scan_packages_validator = EnumAttributeValidator.new('String', ['Admin', 'Write', 'Read']) return false unless scan_packages_validator.valid?(@scan_packages) use_entitlements_privilege_validator = EnumAttributeValidator.new('String', ['Admin', 'Write', 'Read']) return false unless use_entitlements_privilege_validator.valid?(@use_entitlements_privilege) view_statistics_validator = EnumAttributeValidator.new('String', ['Admin', 'Write', 'Read']) return false unless view_statistics_validator.valid?(@view_statistics) true end |