Class: Google::Apis::ContainerV1beta1::RbacBindingConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/container_v1beta1/classes.rb,
lib/google/apis/container_v1beta1/representations.rb,
lib/google/apis/container_v1beta1/representations.rb

Overview

RBACBindingConfig allows user to restrict ClusterRoleBindings an RoleBindings that can be created.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RbacBindingConfig

Returns a new instance of RbacBindingConfig.



8020
8021
8022
# File 'lib/google/apis/container_v1beta1/classes.rb', line 8020

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#enable_insecure_binding_system_authenticatedBoolean Also known as: enable_insecure_binding_system_authenticated?

Setting this to true will allow any ClusterRoleBinding and RoleBinding with subjects system:authenticated. Corresponds to the JSON property enableInsecureBindingSystemAuthenticated

Returns:

  • (Boolean)


8010
8011
8012
# File 'lib/google/apis/container_v1beta1/classes.rb', line 8010

def enable_insecure_binding_system_authenticated
  @enable_insecure_binding_system_authenticated
end

#enable_insecure_binding_system_unauthenticatedBoolean Also known as: enable_insecure_binding_system_unauthenticated?

Setting this to true will allow any ClusterRoleBinding and RoleBinding with subjets system:anonymous or system:unauthenticated. Corresponds to the JSON property enableInsecureBindingSystemUnauthenticated

Returns:

  • (Boolean)


8017
8018
8019
# File 'lib/google/apis/container_v1beta1/classes.rb', line 8017

def enable_insecure_binding_system_unauthenticated
  @enable_insecure_binding_system_unauthenticated
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8025
8026
8027
8028
# File 'lib/google/apis/container_v1beta1/classes.rb', line 8025

def update!(**args)
  @enable_insecure_binding_system_authenticated = args[:enable_insecure_binding_system_authenticated] if args.key?(:enable_insecure_binding_system_authenticated)
  @enable_insecure_binding_system_unauthenticated = args[:enable_insecure_binding_system_unauthenticated] if args.key?(:enable_insecure_binding_system_unauthenticated)
end