Class: Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicy

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

Overview

FeaturePolicy defines features allowed to be used on RBE instances, as well as instance-wide behavior changes that take effect without opt-in or opt-out at usage time.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicy

Returns a new instance of GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicy.



1899
1900
1901
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1899

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

Instance Attribute Details

#container_image_sourcesGoogle::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature

Defines whether a feature can be used or what values are accepted. Corresponds to the JSON property containerImageSources



1856
1857
1858
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1856

def container_image_sources
  @container_image_sources
end

#docker_add_capabilitiesGoogle::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature

Defines whether a feature can be used or what values are accepted. Corresponds to the JSON property dockerAddCapabilities



1861
1862
1863
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1861

def docker_add_capabilities
  @docker_add_capabilities
end

#docker_chroot_pathGoogle::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature

Defines whether a feature can be used or what values are accepted. Corresponds to the JSON property dockerChrootPath



1866
1867
1868
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1866

def docker_chroot_path
  @docker_chroot_path
end

#docker_networkGoogle::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature

Defines whether a feature can be used or what values are accepted. Corresponds to the JSON property dockerNetwork



1871
1872
1873
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1871

def docker_network
  @docker_network
end

#docker_privilegedGoogle::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature

Defines whether a feature can be used or what values are accepted. Corresponds to the JSON property dockerPrivileged



1876
1877
1878
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1876

def docker_privileged
  @docker_privileged
end

#docker_run_as_rootGoogle::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature

Defines whether a feature can be used or what values are accepted. Corresponds to the JSON property dockerRunAsRoot



1881
1882
1883
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1881

def docker_run_as_root
  @docker_run_as_root
end

#docker_runtimeGoogle::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature

Defines whether a feature can be used or what values are accepted. Corresponds to the JSON property dockerRuntime



1886
1887
1888
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1886

def docker_runtime
  @docker_runtime
end

#docker_sibling_containersGoogle::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeature

Defines whether a feature can be used or what values are accepted. Corresponds to the JSON property dockerSiblingContainers



1891
1892
1893
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1891

def docker_sibling_containers
  @docker_sibling_containers
end

#linux_isolationString

linux_isolation allows overriding the docker runtime used for containers started on Linux. Corresponds to the JSON property linuxIsolation

Returns:

  • (String)


1897
1898
1899
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1897

def linux_isolation
  @linux_isolation
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1904

def update!(**args)
  @container_image_sources = args[:container_image_sources] if args.key?(:container_image_sources)
  @docker_add_capabilities = args[:docker_add_capabilities] if args.key?(:docker_add_capabilities)
  @docker_chroot_path = args[:docker_chroot_path] if args.key?(:docker_chroot_path)
  @docker_network = args[:docker_network] if args.key?(:docker_network)
  @docker_privileged = args[:docker_privileged] if args.key?(:docker_privileged)
  @docker_run_as_root = args[:docker_run_as_root] if args.key?(:docker_run_as_root)
  @docker_runtime = args[:docker_runtime] if args.key?(:docker_runtime)
  @docker_sibling_containers = args[:docker_sibling_containers] if args.key?(:docker_sibling_containers)
  @linux_isolation = args[:linux_isolation] if args.key?(:linux_isolation)
end