Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SharedFlowRevision

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

Overview

The metadata describing a shared flow revision.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1SharedFlowRevision

Returns a new instance of GoogleCloudApigeeV1SharedFlowRevision.



5947
5948
5949
# File 'lib/google/apis/apigee_v1/classes.rb', line 5947

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

Instance Attribute Details

#configuration_versionGoogle::Apis::ApigeeV1::GoogleCloudApigeeV1ConfigVersion

Version of the API proxy configuration schema. Currently, only 4.0 is supported. Corresponds to the JSON property configurationVersion



5877
5878
5879
# File 'lib/google/apis/apigee_v1/classes.rb', line 5877

def configuration_version
  @configuration_version
end

#context_infoString

A textual description of the shared flow revision. Corresponds to the JSON property contextInfo

Returns:

  • (String)


5882
5883
5884
# File 'lib/google/apis/apigee_v1/classes.rb', line 5882

def context_info
  @context_info
end

#created_atFixnum

Time at which this shared flow revision was created, in milliseconds since epoch. Corresponds to the JSON property createdAt

Returns:

  • (Fixnum)


5888
5889
5890
# File 'lib/google/apis/apigee_v1/classes.rb', line 5888

def created_at
  @created_at
end

#descriptionString

Description of the shared flow revision. Corresponds to the JSON property description

Returns:

  • (String)


5893
5894
5895
# File 'lib/google/apis/apigee_v1/classes.rb', line 5893

def description
  @description
end

#display_nameString

The human readable name of this shared flow. Corresponds to the JSON property displayName

Returns:

  • (String)


5898
5899
5900
# File 'lib/google/apis/apigee_v1/classes.rb', line 5898

def display_name
  @display_name
end

#entity_meta_data_as_propertiesHash<String,String>

A Key-Value map of metadata about this shared flow revision. Corresponds to the JSON property entityMetaDataAsProperties

Returns:

  • (Hash<String,String>)


5903
5904
5905
# File 'lib/google/apis/apigee_v1/classes.rb', line 5903

def 
  @entity_meta_data_as_properties
end

#last_modified_atFixnum

Time at which this shared flow revision was most recently modified, in milliseconds since epoch. Corresponds to the JSON property lastModifiedAt

Returns:

  • (Fixnum)


5909
5910
5911
# File 'lib/google/apis/apigee_v1/classes.rb', line 5909

def last_modified_at
  @last_modified_at
end

#nameString

The resource ID of the parent shared flow. Corresponds to the JSON property name

Returns:

  • (String)


5914
5915
5916
# File 'lib/google/apis/apigee_v1/classes.rb', line 5914

def name
  @name
end

#policiesArray<String>

A list of policy names included in this shared flow revision. Corresponds to the JSON property policies

Returns:

  • (Array<String>)


5919
5920
5921
# File 'lib/google/apis/apigee_v1/classes.rb', line 5919

def policies
  @policies
end

#resource_filesGoogle::Apis::ApigeeV1::GoogleCloudApigeeV1ResourceFiles

List of resource files. Corresponds to the JSON property resourceFiles



5924
5925
5926
# File 'lib/google/apis/apigee_v1/classes.rb', line 5924

def resource_files
  @resource_files
end

#resourcesArray<String>

A list of the resources included in this shared flow revision formatted as " type://name". Corresponds to the JSON property resources

Returns:

  • (Array<String>)


5930
5931
5932
# File 'lib/google/apis/apigee_v1/classes.rb', line 5930

def resources
  @resources
end

#revisionString

The resource ID of this revision. Corresponds to the JSON property revision

Returns:

  • (String)


5935
5936
5937
# File 'lib/google/apis/apigee_v1/classes.rb', line 5935

def revision
  @revision
end

#shared_flowsArray<String>

A list of the shared flow names included in this shared flow revision. Corresponds to the JSON property sharedFlows

Returns:

  • (Array<String>)


5940
5941
5942
# File 'lib/google/apis/apigee_v1/classes.rb', line 5940

def shared_flows
  @shared_flows
end

#typeString

The string "Application" Corresponds to the JSON property type

Returns:

  • (String)


5945
5946
5947
# File 'lib/google/apis/apigee_v1/classes.rb', line 5945

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
# File 'lib/google/apis/apigee_v1/classes.rb', line 5952

def update!(**args)
  @configuration_version = args[:configuration_version] if args.key?(:configuration_version)
  @context_info = args[:context_info] if args.key?(:context_info)
  @created_at = args[:created_at] if args.key?(:created_at)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @entity_meta_data_as_properties = args[:entity_meta_data_as_properties] if args.key?(:entity_meta_data_as_properties)
  @last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
  @name = args[:name] if args.key?(:name)
  @policies = args[:policies] if args.key?(:policies)
  @resource_files = args[:resource_files] if args.key?(:resource_files)
  @resources = args[:resources] if args.key?(:resources)
  @revision = args[:revision] if args.key?(:revision)
  @shared_flows = args[:shared_flows] if args.key?(:shared_flows)
  @type = args[:type] if args.key?(:type)
end