Class: Google::Cloud::ConfigService::V1::ProviderConfig

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/config/v1/config.rb

Overview

ProviderConfig contains the provider configurations.

Defined Under Namespace

Modules: ProviderSource

Instance Attribute Summary collapse

Instance Attribute Details

#source_type::Google::Cloud::ConfigService::V1::ProviderConfig::ProviderSource

Returns Optional. ProviderSource specifies the source type of the provider.

Returns:



1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1948

class ProviderConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # ProviderSource represents the source type of the provider.
  module ProviderSource
    # Unspecified source type, default to public sources.
    PROVIDER_SOURCE_UNSPECIFIED = 0

    # Service maintained provider source type.
    SERVICE_MAINTAINED = 1
  end
end