Sha256: 8b51a0abfc56184cb84b54f68404931c5de31eb6d73d9a0dee231505518adc36
Contents?: true
Size: 1.48 KB
Versions: 1
Compression:
Stored size: 1.48 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::Compute module Models # # Information about a service principal identity for the cluster to use for # manipulating Azure APIs. # class ContainerServiceServicePrincipalProfile include MsRestAzure # @return [String] The ID for the service principal. attr_accessor :client_id # @return [String] The secret password associated with the service # principal. attr_accessor :secret # # Mapper for ContainerServiceServicePrincipalProfile class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'ContainerServiceServicePrincipalProfile', type: { name: 'Composite', class_name: 'ContainerServiceServicePrincipalProfile', model_properties: { client_id: { required: true, serialized_name: 'clientId', type: { name: 'String' } }, secret: { required: true, serialized_name: 'secret', type: { name: 'String' } } } } } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
azure_mgmt_compute-0.10.0 | lib/generated/azure_mgmt_compute/models/container_service_service_principal_profile.rb |