Class: Google::Apis::FirebasehostingV1beta1::Site

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

Overview

A Site represents a Firebase Hosting site.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Site

Returns a new instance of Site.



1028
1029
1030
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 1028

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

Instance Attribute Details

#app_idString

Optional. The ID of a Web App associated with the Hosting site. Corresponds to the JSON property appId

Returns:

  • (String)


997
998
999
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 997

def app_id
  @app_id
end

#default_urlString

Output only. The default URL for the Hosting site. Corresponds to the JSON property defaultUrl

Returns:

  • (String)


1002
1003
1004
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 1002

def default_url
  @default_url
end

#labelsHash<String,String>

Optional. User-specified labels for the Hosting site. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


1007
1008
1009
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 1007

def labels
  @labels
end

#nameString

Output only. The fully-qualified resource name of the Hosting site, in the format: projects/PROJECT_IDENTIFIER/sites/SITE_ID PROJECT_IDENTIFIER: the Firebase project's ProjectNumber ( recommended) or its ProjectId. Learn more about using project identifiers in Google's AIP 2510 standard. Corresponds to the JSON property name

Returns:

  • (String)


1019
1020
1021
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 1019

def name
  @name
end

#typeString

Output only. The type of Hosting site. Every Firebase project has a DEFAULT_SITE, which is created when Hosting is provisioned for the project. All additional sites are USER_SITE. Corresponds to the JSON property type

Returns:

  • (String)


1026
1027
1028
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 1026

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1033
1034
1035
1036
1037
1038
1039
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 1033

def update!(**args)
  @app_id = args[:app_id] if args.key?(:app_id)
  @default_url = args[:default_url] if args.key?(:default_url)
  @labels = args[:labels] if args.key?(:labels)
  @name = args[:name] if args.key?(:name)
  @type = args[:type] if args.key?(:type)
end