Class: Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateInstanceRequest
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateInstanceRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/remotebuildexecution_v2/classes.rb,
generated/google/apis/remotebuildexecution_v2/representations.rb,
generated/google/apis/remotebuildexecution_v2/representations.rb
Overview
The request used for CreateInstance.
Instance Attribute Summary collapse
-
#instance ⇒ Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemotebuildexecutionAdminV1alphaInstance
Instance conceptually encapsulates all Remote Build Execution resources for remote builds.
-
#instance_id ⇒ String
ID of the created instance.
-
#parent ⇒ String
Resource name of the project containing the instance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateInstanceRequest
constructor
A new instance of GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateInstanceRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateInstanceRequest
Returns a new instance of GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateInstanceRequest
2303 2304 2305 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2303 def initialize(**args) update!(**args) end |
Instance Attribute Details
#instance ⇒ Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemotebuildexecutionAdminV1alphaInstance
Instance conceptually encapsulates all Remote Build Execution resources
for remote builds.
An instance consists of storage and compute resources (for example,
ContentAddressableStorage, ActionCache, WorkerPools) used for
running remote builds.
All Remote Build Execution API calls are scoped to an instance.
Corresponds to the JSON property instance
2285 2286 2287 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2285 def instance @instance end |
#instance_id ⇒ String
ID of the created instance.
A valid instance_id must:
be 6-50 characters long,
contain only lowercase letters, digits, hyphens and underscores,
start with a lowercase letter, and
end with a lowercase letter or a digit.
Corresponds to the JSON property instanceId
2295 2296 2297 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2295 def instance_id @instance_id end |
#parent ⇒ String
Resource name of the project containing the instance.
Format: projects/[PROJECT_ID].
Corresponds to the JSON property parent
2301 2302 2303 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2301 def parent @parent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2308 2309 2310 2311 2312 |
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2308 def update!(**args) @instance = args[:instance] if args.key?(:instance) @instance_id = args[:instance_id] if args.key?(:instance_id) @parent = args[:parent] if args.key?(:parent) end |