class Google::Apis::DatafusionV1beta1::Namespace
Represents the information of a namespace
Attributes
iam_policy[RW]
IAMPolicy encapsulates the IAM policy name, definition and status of policy fetching. Corresponds to the JSON property `iamPolicy` @return [Google::Apis::DatafusionV1beta1::IamPolicy]
name[RW]
Name of the given namespace. Corresponds to the JSON property `name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datafusion_v1beta1/classes.rb, line 846 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/datafusion_v1beta1/classes.rb, line 851 def update!(**args) @iam_policy = args[:iam_policy] if args.key?(:iam_policy) @name = args[:name] if args.key?(:name) end