Class: Google::Apis::OsconfigV1alpha::OsPolicyResourceRepositoryResourceAptRepository
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1alpha::OsPolicyResourceRepositoryResourceAptRepository
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/osconfig_v1alpha/classes.rb,
lib/google/apis/osconfig_v1alpha/representations.rb,
lib/google/apis/osconfig_v1alpha/representations.rb
Overview
Represents a single apt package repository. These will be added to a repo file
that will be managed at /etc/apt/sources.list.d/google_osconfig.list
.
Instance Attribute Summary collapse
-
#archive_type ⇒ String
Required.
-
#components ⇒ Array<String>
Required.
-
#distribution ⇒ String
Required.
-
#gpg_key ⇒ String
URI of the key file for this repository.
-
#uri ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OsPolicyResourceRepositoryResourceAptRepository
constructor
A new instance of OsPolicyResourceRepositoryResourceAptRepository.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OsPolicyResourceRepositoryResourceAptRepository
Returns a new instance of OsPolicyResourceRepositoryResourceAptRepository.
2384 2385 2386 |
# File 'lib/google/apis/osconfig_v1alpha/classes.rb', line 2384 def initialize(**args) update!(**args) end |
Instance Attribute Details
#archive_type ⇒ String
Required. Type of archive files in this repository.
Corresponds to the JSON property archiveType
2360 2361 2362 |
# File 'lib/google/apis/osconfig_v1alpha/classes.rb', line 2360 def archive_type @archive_type end |
#components ⇒ Array<String>
Required. List of components for this repository. Must contain at least one
item.
Corresponds to the JSON property components
2366 2367 2368 |
# File 'lib/google/apis/osconfig_v1alpha/classes.rb', line 2366 def components @components end |
#distribution ⇒ String
Required. Distribution of this repository.
Corresponds to the JSON property distribution
2371 2372 2373 |
# File 'lib/google/apis/osconfig_v1alpha/classes.rb', line 2371 def distribution @distribution end |
#gpg_key ⇒ String
URI of the key file for this repository. The agent maintains a keyring at /
etc/apt/trusted.gpg.d/osconfig_agent_managed.gpg
.
Corresponds to the JSON property gpgKey
2377 2378 2379 |
# File 'lib/google/apis/osconfig_v1alpha/classes.rb', line 2377 def gpg_key @gpg_key end |
#uri ⇒ String
Required. URI for this repository.
Corresponds to the JSON property uri
2382 2383 2384 |
# File 'lib/google/apis/osconfig_v1alpha/classes.rb', line 2382 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2389 2390 2391 2392 2393 2394 2395 |
# File 'lib/google/apis/osconfig_v1alpha/classes.rb', line 2389 def update!(**args) @archive_type = args[:archive_type] if args.key?(:archive_type) @components = args[:components] if args.key?(:components) @distribution = args[:distribution] if args.key?(:distribution) @gpg_key = args[:gpg_key] if args.key?(:gpg_key) @uri = args[:uri] if args.key?(:uri) end |