Class: Google::Apis::CloudresourcemanagerV1::Lien
- Inherits:
-
Object
- Object
- Google::Apis::CloudresourcemanagerV1::Lien
- Defined in:
- generated/google/apis/cloudresourcemanager_v1/classes.rb,
generated/google/apis/cloudresourcemanager_v1/representations.rb,
generated/google/apis/cloudresourcemanager_v1/representations.rb
Overview
A Lien represents an encumbrance on the actions that can be performed on a resource.
Instance Attribute Summary collapse
-
#create_time ⇒ String
The creation time of this Lien.
-
#name ⇒ String
A system-generated unique identifier for this Lien.
-
#origin ⇒ String
A stable, user-visible/meaningful string identifying the origin of the Lien, intended to be inspected programmatically.
-
#parent ⇒ String
A reference to the resource this Lien is attached to.
-
#reason ⇒ String
Concise user-visible strings indicating why an action cannot be performed on a resource.
-
#restrictions ⇒ Array<String>
The types of operations which should be blocked as a result of this Lien.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Lien
constructor
A new instance of Lien.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Lien
Returns a new instance of Lien
1235 1236 1237 |
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1235 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
The creation time of this Lien.
Corresponds to the JSON property createTime
1233 1234 1235 |
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1233 def create_time @create_time end |
#name ⇒ String
A system-generated unique identifier for this Lien.
Example: liens/1234abcd
Corresponds to the JSON property name
1197 1198 1199 |
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1197 def name @name end |
#origin ⇒ String
A stable, user-visible/meaningful string identifying the origin of the
Lien, intended to be inspected programmatically. Maximum length of 200
characters.
Example: 'compute.googleapis.com'
Corresponds to the JSON property origin
1212 1213 1214 |
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1212 def origin @origin end |
#parent ⇒ String
A reference to the resource this Lien is attached to. The server will
validate the parent against those for which Liens are supported.
Example: projects/1234
Corresponds to the JSON property parent
1228 1229 1230 |
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1228 def parent @parent end |
#reason ⇒ String
Concise user-visible strings indicating why an action cannot be performed
on a resource. Maximum lenth of 200 characters.
Example: 'Holds production API key'
Corresponds to the JSON property reason
1204 1205 1206 |
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1204 def reason @reason end |
#restrictions ⇒ Array<String>
The types of operations which should be blocked as a result of this Lien.
Each value should correspond to an IAM permission. The server will
validate the permissions against those for which Liens are supported.
An empty list is meaningless and will be rejected.
Example: ['resourcemanager.projects.delete']
Corresponds to the JSON property restrictions
1221 1222 1223 |
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1221 def restrictions @restrictions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1240 1241 1242 1243 1244 1245 1246 1247 |
# File 'generated/google/apis/cloudresourcemanager_v1/classes.rb', line 1240 def update!(**args) @name = args[:name] if args.key?(:name) @reason = args[:reason] if args.key?(:reason) @origin = args[:origin] if args.key?(:origin) @restrictions = args[:restrictions] if args.key?(:restrictions) @parent = args[:parent] if args.key?(:parent) @create_time = args[:create_time] if args.key?(:create_time) end |